Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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