CMS 3D CMS Logo

CSCDQM_StripClusterFitData.h
Go to the documentation of this file.
1 #ifndef CSCDQM_StripClusterFitData_h
2 #define CSCDQM_StripClusterFitData_h
3 
4 #include <TObject.h>
5 
6 namespace cscdqm {
7 
13  public:
14  int channel() { return channel_; }
15  float height(int i) { return height_[i]; }
16  float bx() { return bx_; }
17 
18  //private:
19  int channel_;
20  float height_[16]; //or 16 for Cosmic Test
21  float bx_;
23  virtual ~StripClusterFitData();
24  // ClassDef(StripClusterFitData,1) //StripClusterFitData
25  };
26 
27 } // namespace cscdqm
28 
29 #endif
Strip Cluster Fit Data Object.