00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef MaxNodeDispRecorder_h
00027 #define MaxNodeDispRecorder_h
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #include <Recorder.h>
00043 #include <ID.h>
00044 #include <Vector.h>
00045
00046 #include <Domain.h>
00047
00056 class MaxNodeDispRecorder: public Recorder
00057 {
00058 public:
00065 MaxNodeDispRecorder(int dof, const ID &theNodes, Domain &theDomain);
00066
00070 ~MaxNodeDispRecorder();
00071
00081 int record(int commitTag);
00082
00088 int playback(int commitTag);
00089
00090
00094 void restart(void);
00095
00096
00097 protected:
00098
00099 private:
00101 ID theNodes;
00102
00104 Vector maxDisp;
00106 int dof;
00108 Domain *theDomain;
00109 };
00110
00111
00112 #endif