Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:13

0001 #ifndef HcalGains_h
0002 #define HcalGains_h
0003 
0004 /** 
0005 \class HcalGains
0006 \author Radek Ofierzynski
0007 POOL container to store Gain values 4xCapId
0008 */
0009 
0010 #include "CondFormats/Serialization/interface/Serializable.h"
0011 
0012 #include "CondFormats/HcalObjects/interface/HcalCondObjectContainer.h"
0013 #include "CondFormats/HcalObjects/interface/HcalGain.h"
0014 
0015 //typedef HcalCondObjectContainer<HcalGain> HcalGains;
0016 
0017 class HcalGains : public HcalCondObjectContainer<HcalGain> {
0018 public:
0019 #ifndef HCAL_COND_SUPPRESS_DEFAULT
0020   HcalGains() : HcalCondObjectContainer<HcalGain>(nullptr) {}
0021 #endif
0022   HcalGains(const HcalTopology* topo) : HcalCondObjectContainer<HcalGain>(topo) {}
0023 
0024   std::string myname() const override { return (std::string) "HcalGains"; }
0025 
0026 private:
0027   COND_SERIALIZABLE;
0028 };
0029 
0030 #endif