CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/CondFormats/ESObjects/interface/ESGain.h

Go to the documentation of this file.
00001 #ifndef CondFormats_ESObjects_ESGain_H
00002 #define CondFormats_ESObjects_ESGain_H
00003 #include <iostream>
00004 
00005 class ESGain {
00006   public:
00007     ESGain();
00008     ESGain(const float & gain);
00009     ~ESGain();
00010     void  setESGain(const float& value) { gain_ = value; }
00011     float getESGain() const { return gain_; }
00012     void print(std::ostream& s) const {
00013       s << "ESGain: " << gain_; 
00014     }
00015   private:
00016     float gain_;
00017 };
00018 
00019 
00020 #endif