Definition at line 95 of file TimePlot.h. References GetPtr(), mNrRuns, mNrSplitTimes, mNrXCoords, and mXCoords. Referenced by DoSaveData(). 00096 { 00097 fprintf(fp, "\n\n# All of split %d of func %d using timer mode %d\n", 00098 split, function, timer); 00099 if (split == mNrSplitTimes) 00100 fprintf(fp, "# This split is actually the end time\n"); 00101 for (int x=0 ; x<mNrXCoords ; x++) 00102 { 00103 fprintf(fp, "%d", mXCoords[x]); 00104 for (int r=0 ; r<mNrRuns ; r++) 00105 fprintf(fp, "\t%f", *GetPtr(timer, function, x, split, r)); 00106 fprintf(fp, "\n"); 00107 } 00108 }
Here is the call graph for this function:
|