CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
HcalDcsValue.cc
Go to the documentation of this file.
3 
4 HcalDcsValue::HcalDcsValue() : mId(0), mLS(0), mValue(0), mUpperLimit(0), mLowerLimit(0) {}
5 
6 HcalDcsValue::HcalDcsValue(uint32_t fid, int ls, float val, float upper, float lower)
7  : mId(fid), mLS(ls), mValue(val), mUpperLimit(upper), mLowerLimit(lower) {}
8 
10  : mId(other.mId),
11  mLS(other.mLS),
12  mValue(other.mValue),
13  mUpperLimit(other.mUpperLimit),
14  mLowerLimit(other.mLowerLimit) {}
15 
17 
19  HcalDcsDetId tmpId(mId);
20  return tmpId.subdet();
21 }
HcalOtherSubdetector getSubdetector() const
Definition: HcalDcsValue.cc:18
def ls
Definition: eostools.py:349
HcalOtherSubdetector
Definition: HcalAssistant.h:40
uint32_t mId
Definition: HcalDcsValue.h:34
HcalOtherSubdetector subdet() const
get the category
virtual ~HcalDcsValue()
Definition: HcalDcsValue.cc:16