/* * PndOnline.h * * Created on: Nov. 14, 2012 * Author: Sean Dobbs (s-dobbs@northwestern.edu) * * Class to store generic information for online processing & simulation */ #ifndef PNDONLINE_H_ #define PNDONLINE_H_ //#include namespace PndOnline { const double kHESRRevolution = 2600; //const double kHESRRevolution = 2600; const double kBad = 1.e9; enum SubDetectorId { kSTT, kMVDPixel, kMVDStrip, kSciTil }; } /** class PndOnline : public TObject { public: PndOnline() { PndOnline::kHESRRevolution = 2600; //PndOnline::kBad = 1.e9; } enum SubDetectorId { kSTT, kMVDPixel, kMVDStrip, kSciTil }; //static double kBad; //static double kBad; //const static double kBad = 1.e9; static double kHESRRevolution; // in nanoseconds //static double kHESRRevolution = 200; // in nanoseconds ClassDef(PndOnline,0) }; **/ #endif