65 #include <utility/recorder/Recorder.h> 81 std::string fileName1;
82 std::string fileName2;
85 double nextTimeStampToRecord;
92 FilePlotter(
const std::string &fileName,
const std::string &windowTitle,
93 int xLoc,
int yLoc,
int width,
int height,
double dT);
95 FilePlotter(
const std::string &fileName1,
const std::string &fileName2,
96 const std::string &windowTitle,
97 int xLoc,
int yLoc,
int width,
int height,
double dT);
104 int record(
int commitTag,
double timeStamp);
108 int setFile(
const std::string &newFile);
109 int setCol(
const ID &theCols);
Float vector abstraction.
Definition: Vector.h:94
int record(int commitTag, double timeStamp)
Invoked by the Domain object after commit() has been invoked on all the domain component objects...
Definition: FilePlotter.cpp:161
An Recorder object is used in the program to store/restore information at each commit().
Definition: Recorder.h:87
Vector of integers.
Definition: ID.h:95
int restart(void)
Invoked by the Domain object when revertToStart() is invoked on the Domain object.
Definition: FilePlotter.cpp:186
Open source finite element program for structural analysis.
Definition: ContinuaReprComponent.h:35
int playback(int commitTag)
//! Invoked by the analyst after the analysis has been performed.
Definition: FilePlotter.cpp:180
A FilePlotter will create a line graph using xy points found in a file.
Definition: FilePlotter.h:75