EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ValValidate.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file ValValidate.h
1 
2 #ifndef VALVALIDATE_H
3 #define VALVALIDATE_H
4 
5 class ValTimeStamp;
6 #include "TObject.h"
7 
8 class ValValidate : public TObject
9 {
10 
11  public:
12 
13  ValValidate(); // necessary for streamer io
14  virtual ~ValValidate();
15 
16  Bool_t RunAllTests();
17 
18  Bool_t TestTimeStamp(void);
19  Bool_t TestContext(void);
20  Bool_t TestRange(void);
21 
22  Bool_t TestFileIO(void);
23 
24  protected:
25  Bool_t CompareTimeStamps(const char* label,
26  ValTimeStamp& test, ValTimeStamp& std);
27 
28  private:
29 
30  ClassDef(ValValidate,1) // ValValidate version 1
31 };
32 
33 #endif // VALVALIDATE_H