CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/DQM/CSCMonitorModule/interface/CSCDQM_StripClusterFitData.h

Go to the documentation of this file.
00001 #ifndef CSCDQM_StripClusterFitData_h
00002 #define CSCDQM_StripClusterFitData_h
00003 
00004 #include <TObject.h>
00005 
00006 namespace cscdqm {
00007 
00012 class StripClusterFitData {
00013  public:
00014   int channel()  {return channel_;}
00015   float height(int i)  {return height_[i];}
00016   float   bx() {return bx_;}
00017   
00018   //private:
00019   int channel_;
00020   float height_[16]; //or 16 for Cosmic Test
00021   float   bx_;
00022   StripClusterFitData();
00023   virtual ~StripClusterFitData();
00024 //  ClassDef(StripClusterFitData,1) //StripClusterFitData
00025 };
00026 
00027 }
00028 
00029 #endif