test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ESADCToGeVConstant.h
Go to the documentation of this file.
1 #ifndef CondFormats_ESObjects_ESADCToGeVConstant_H
2 #define CondFormats_ESObjects_ESADCToGeVConstant_H
4 
5 #include <iostream>
6 
8  public:
10  ESADCToGeVConstant(const float & ESvaluelow, const float & ESvaluehigh);
12  void setESValueLow(const float& value) { ESvaluelow_ = value; }
13  float getESValueLow() const { return ESvaluelow_; }
14  void setESValueHigh(const float& value) { ESvaluehigh_ = value; }
15  float getESValueHigh() const { return ESvaluehigh_; }
16  void print(std::ostream& s) const {
17  s << "ESADCToGeVConstant: ES low/high " << ESvaluelow_ << " / " << ESvaluehigh_ <<" [GeV/ADC count]";
18  }
19  private:
20  float ESvaluelow_;
21  float ESvaluehigh_;
22 
24 };
25 
26 
27 #endif
void print(std::ostream &s) const
void setESValueHigh(const float &value)
float getESValueHigh() const
float getESValueLow() const
void setESValueLow(const float &value)
#define COND_SERIALIZABLE
Definition: Serializable.h:37