CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ESMIPToGeVConstant.h
Go to the documentation of this file.
1 #ifndef CondFormats_ESObjects_ESMIPToGeVConstant_H
2 #define CondFormats_ESObjects_ESMIPToGeVConstant_H
3 #include <iostream>
4 
6 
7  public:
8 
10  ESMIPToGeVConstant(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 << "ESMIPToGeVConstant: ES low/high " << ESvaluelow_ << " / " << ESvaluehigh_ <<" [GeV/MIP count]";
18  }
19 
20  private:
21 
22  float ESvaluelow_;
23  float ESvaluehigh_;
24 };
25 
26 #endif
float getESValueLow() const
void setESValueLow(const float &value)
void print(std::ostream &s) const
void setESValueHigh(const float &value)
float getESValueHigh() const