Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:06:57

0001 #ifndef CSCDQM_StripClusterFitData_h
0002 #define CSCDQM_StripClusterFitData_h
0003 
0004 #include <TObject.h>
0005 
0006 namespace cscdqm {
0007 
0008   /**
0009    * @class StripClusterFitData
0010    * @brief Strip Cluster Fit Data Object
0011    */
0012   class StripClusterFitData {
0013   public:
0014     int channel() { return channel_; }
0015     float height(int i) { return height_[i]; }
0016     float bx() { return bx_; }
0017 
0018     //private:
0019     int channel_;
0020     float height_[16];  //or 16 for Cosmic Test
0021     float bx_;
0022     StripClusterFitData();
0023     virtual ~StripClusterFitData();
0024     //  ClassDef(StripClusterFitData,1) //StripClusterFitData
0025   };
0026 
0027 }  // namespace cscdqm
0028 
0029 #endif