00001
00002
00003
00004
00005
00006
00008 #ifndef CONVENTIONSVALIDATE_H
00009 #define CONVENTIONSVALIDATE_H
00010
00011 #ifndef ROOT_Rtypes
00012 #if !defined(__CINT__) || defined(__MAKECINT__)
00013 #include "Rtypes.h"
00014 #endif
00015 #endif
00016
00017 class ConventionsValidate {
00018
00019 public:
00020
00021 ConventionsValidate();
00022 virtual ~ConventionsValidate();
00023
00024 Bool_t RunAllTests();
00025
00026 private:
00027 Bool_t TestDetector();
00028 Bool_t TestElecType();
00029 Bool_t TestPlaneCoverage();
00030 Bool_t TestPlaneView();
00031 Bool_t TestReadoutType();
00032 Bool_t TestSimFlag();
00033 Bool_t TestStripEnd();
00034
00035 Bool_t TestMunits();
00036
00037 ClassDef(ConventionsValidate,0)
00038 };
00039 #endif