CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/CondFormats/EcalObjects/interface/EcalTPGWeights.h

Go to the documentation of this file.
00001 #ifndef EcalTPGWeights_h
00002 #define EcalTPGWeights_h
00003 
00004 #include <map>
00005 #include <boost/cstdint.hpp>
00006 
00007 class EcalTPGWeights 
00008 {
00009  public:
00010   EcalTPGWeights() ;
00011   ~EcalTPGWeights() ;
00012 
00013   void getValues(uint32_t & w0,
00014                  uint32_t & w1,
00015                  uint32_t & w2,
00016                  uint32_t & w3,
00017                  uint32_t & w4) const ;
00018   void setValues(const uint32_t & w0,
00019                  const uint32_t & w1,
00020                  const uint32_t & w2,
00021                  const uint32_t & w3,
00022                  const uint32_t & w4) ;
00023 
00024 
00025  private:
00026   uint32_t w0_ ;
00027   uint32_t w1_ ;
00028   uint32_t w2_ ;
00029   uint32_t w3_ ;
00030   uint32_t w4_ ;
00031 
00032 
00033 };
00034 
00035 #endif