Definition at line 202 of file TimePlot.h. References mNrFunctions, and mNrSplitTimes. Referenced by SaveData(). 00204 { 00205 int i; 00206 for (i=0 ; i<=mNrSplitTimes ; i++) 00207 fprintf(fp, "call '%s_%s_%s_split_average.gp' %s %d\n", 00208 machineName.c_str(), experiment.c_str(), imageName.c_str(), 00209 timer.c_str(), i); 00210 fprintf(fp, "\n"); 00211 for (i=0 ; i<mNrFunctions ; i++) 00212 fprintf(fp, "call '%s_%s_%s_func_decomp.gp' %s %d\n", 00213 machineName.c_str(), experiment.c_str(), imageName.c_str(), 00214 timer.c_str(), i); 00215 fprintf(fp, "\n"); 00216 for (i=0 ; i<mNrFunctions ; i++) 00217 fprintf(fp, "call '%s_%s_%s_func_runs.gp' %s %d\n", 00218 machineName.c_str(), experiment.c_str(), imageName.c_str(), 00219 timer.c_str(), i); 00220 }
|