CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_1/src/CondFormats/HcalObjects/interface/HcalGains.h

Go to the documentation of this file.
00001 #ifndef HcalGains_h
00002 #define HcalGains_h
00003 
00010 #include "CondFormats/HcalObjects/interface/HcalCondObjectContainer.h"
00011 #include "CondFormats/HcalObjects/interface/HcalGain.h"
00012 
00013 //typedef HcalCondObjectContainer<HcalGain> HcalGains;
00014 
00015 class HcalGains: public HcalCondObjectContainer<HcalGain>
00016 {
00017  public:
00018 #ifndef HCAL_COND_SUPPRESS_DEFAULT
00019   HcalGains():HcalCondObjectContainer<HcalGain>(0) {}
00020 #endif
00021   HcalGains(const HcalTopology* topo):HcalCondObjectContainer<HcalGain>(topo) {}
00022 
00023   std::string myname() const {return (std::string)"HcalGains";}
00024 
00025  private:
00026 };
00027 
00028 #endif