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
3 #include <iostream>
4 
6  public:
8  ESADCToGeVConstant(const float & ESvaluelow, const float & ESvaluehigh);
10  void setESValueLow(const float& value) { ESvaluelow_ = value; }
11  float getESValueLow() const { return ESvaluelow_; }
12  void setESValueHigh(const float& value) { ESvaluehigh_ = value; }
13  float getESValueHigh() const { return ESvaluehigh_; }
14  void print(std::ostream& s) const {
15  s << "ESADCToGeVConstant: ES low/high " << ESvaluelow_ << " / " << ESvaluehigh_ <<" [GeV/ADC count]";
16  }
17  private:
18  float ESvaluelow_;
19  float ESvaluehigh_;
20 };
21 
22 
23 #endif
void print(std::ostream &s) const
void setESValueHigh(const float &value)
float getESValueHigh() const
float getESValueLow() const
void setESValueLow(const float &value)