00001 #ifndef MAXTIMEDIFFDPGENERATOR_H_ 00002 #define MAXTIMEDIFFDPGENERATOR_H_ 00003 00004 #include "TVDetectorPulseGenerator.h" 00005 00006 class MaxTimeDiffDPGenerator:public TVDetectorPulseGenerator{ 00007 00008 public: 00009 MaxTimeDiffDPGenerator(TDPGeneratorOptions* opts); 00010 virtual ~MaxTimeDiffDPGenerator(){}; 00011 virtual bool ChecksForPileUp()const {return false;}; 00012 00013 public: 00014 virtual int ProcessPulses( DetectorPulseList& output); 00015 00016 private: 00017 double fTimeDifference; 00018 }; 00019 #endif //MAXTIMEDIFFDPGENERATOR_H_