Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:47

0001 #ifndef HFTIMINGTRUSTFLAG_GUARD_H
0002 #define HFTIMINGTRUSTFLAG_GUARD_H
0003 
0004 #include "DataFormats/HcalDigi/interface/HFDataFrame.h"
0005 #include "DataFormats/HcalRecHit/interface/HFRecHit.h"
0006 
0007 /** HFTimingTrustFlag
0008     Class sets the HF timing status bits according to
0009     uncertainty on timing estimation
0010        
0011     \author I. Vodopiyanov -- Florida Institute of technology
0012 */
0013 
0014 class HFTimingTrustFlag {
0015 public:
0016   HFTimingTrustFlag();
0017   HFTimingTrustFlag(int level1, int level2);
0018   ~HFTimingTrustFlag();
0019 
0020   void setHFTimingTrustFlag(HFRecHit& rechit, const HFDataFrame& digi);
0021 
0022 private:
0023   int HFTimingTrustLevel1_, HFTimingTrustLevel2_;
0024 };
0025 
0026 #endif