CMS 3D CMS Logo

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 public:
10  ESRecHitRatioCuts(const float& r12Low, const float& r23Low, const float& r12High, const float& r23High);
12 
13  void setR12Low(const float& value) { r12Low_ = value; }
14  float getR12Low() const { return r12Low_; }
15  void setR23Low(const float& value) { r23Low_ = value; }
16  float getR23Low() const { return r23Low_; }
17 
18  void setR12High(const float& value) { r12High_ = value; }
19  float getR12High() const { return r12High_; }
20  void setR23High(const float& value) { r23High_ = value; }
21  float getR23High() const { return r23High_; }
22 
23  void print(std::ostream& s) const {
24  s << "ESRecHitRatioCuts: ES low cut (r12, r23) / high cut (r12, r23)" << r12Low_ << " " << r23Low_ << " / "
25  << r12High_ << " " << r23High_;
26  }
27 
28 private:
29  float r12Low_;
30  float r23Low_;
31  float r12High_;
32  float r23High_;
33 
35 };
36 
37 #endif
float getR12High() const
void setR12Low(const float &value)
void setR23High(const float &value)
void setR23Low(const float &value)
void setR12High(const float &value)
float getR23High() const
Definition: value.py:1
void print(std::ostream &s) const
float getR12Low() const
#define COND_SERIALIZABLE
Definition: Serializable.h:39
float getR23Low() const