CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalL1TriggerObject.h
Go to the documentation of this file.
1 #ifndef HcalL1TriggerObject_h
2 #define HcalL1TriggerObject_h
3 
4 /*
5 \class HcalL1TriggerObject
6 \author Radek Ofierzynski
7 
8 */
9 
10 #include <boost/cstdint.hpp>
11 
13 {
14  public:
16 
17  HcalL1TriggerObject(unsigned long fId, float fAvrgPed, float fRespCorrGain, unsigned long fFlag = 0):
18  mId(fId), mAvrgPed(fAvrgPed), mRespCorrGain(fRespCorrGain), mFlag(fFlag) {}
19 
20  uint32_t rawId () const {return mId;}
21 
22  float getPedestal() const {return mAvrgPed;}
23  float getRespGain() const {return mRespCorrGain;}
24  uint32_t getFlag() const {return mFlag;}
25 
26  private:
27  uint32_t mId;
28  float mAvrgPed;
30  uint32_t mFlag;
31 
32 };
33 
34 #endif
uint32_t getFlag() const
float getPedestal() const
float getRespGain() const
uint32_t rawId() const
HcalL1TriggerObject(unsigned long fId, float fAvrgPed, float fRespCorrGain, unsigned long fFlag=0)