CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
CastorPedestalWidths.h
Go to the documentation of this file.
1 #ifndef CastorPedestalWidths_h
2 #define CastorPedestalWidths_h
3 
12 
15 
16 //typedef CastorCondObjectContainer<CastorPedestalWidth> CastorPedestalWidths;
17 
18 class CastorPedestalWidths : public CastorCondObjectContainer<CastorPedestalWidth> {
19 public:
20  //constructor definition: has to contain
23 
24  // are the units ADC ? (true=ADC, false=fC)
25  bool isADC() const { return unitIsADC; }
26  // set unit boolean
27  void setUnitADC(bool isADC) { unitIsADC = isADC; }
28 
29  std::string const myname() { return (std::string) "CastorPedestalWidths"; }
30 
31 private:
32  bool unitIsADC;
33 
35 };
36 
37 #endif
void setUnitADC(bool isADC)
#define COND_SERIALIZABLE
Definition: Serializable.h:39
std::string const myname()