CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10/src/CalibCalorimetry/EcalPedestalOffsets/interface/TPedResult.h

Go to the documentation of this file.
00001 #ifndef TPedResult_h
00002 #define TPedResult_h
00003 
00013 #include <vector>
00014 
00015 class TPedResult
00016 {
00017   public:
00018 
00019     TPedResult () { reset () ; }
00020 
00021     void reset () 
00022       {
00023         for (int gainId = 1 ; gainId < 4 ; ++gainId)
00024           for (int crystal = 0 ; crystal < 1700 ; ++crystal)
00025             m_DACvalue[gainId-1][crystal] = 0 ;
00026       }
00027   
00028     int m_DACvalue[3][1700] ;
00029 } ;
00030 
00031 #endif