CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ESRecHitRatioCuts.h
Go to the documentation of this file.
1 #ifndef CondFormats_ESObjects_ESRecHitRatioCuts_H
2 #define CondFormats_ESObjects_ESRecHitRatioCuts_H
4 
5 #include <iostream>
6 
8 
9  public:
10 
12  ESRecHitRatioCuts(const float & r12Low, const float & r23Low,
13  const float & r12High, const float & r23High);
15 
16  void setR12Low(const float& value) { r12Low_ = value; }
17  float getR12Low() const { return r12Low_; }
18  void setR23Low(const float& value) { r23Low_ = value; }
19  float getR23Low() const { return r23Low_; }
20 
21  void setR12High(const float& value) { r12High_ = value; }
22  float getR12High() const { return r12High_; }
23  void setR23High(const float& value) { r23High_ = value; }
24  float getR23High() const { return r23High_; }
25 
26  void print(std::ostream& s) const {
27  s << "ESRecHitRatioCuts: ES low cut (r12, r23) / high cut (r12, r23)" << r12Low_ << " " << r23Low_<< " / " << r12High_ <<" "<< r23High_;
28  }
29 
30  private:
31 
32  float r12Low_;
33  float r23Low_;
34  float r12High_;
35  float r23High_;
36 
38 };
39 
40 #endif
void setR12Low(const float &value)
void setR23High(const float &value)
void setR23Low(const float &value)
void setR12High(const float &value)
#define COND_SERIALIZABLE
Definition: Serializable.h:37
float getR12High() const
float getR23High() const
float getR12Low() const
void print(std::ostream &s) const
float getR23Low() const