Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef CondFormatsHcalObjectsHcalTPChannelParameters_h
0002 #define CondFormatsHcalObjectsHcalTPChannelParameters_h
0003 
0004 #include "CondFormats/Serialization/interface/Serializable.h"
0005 #include "CondFormats/HcalObjects/interface/HcalTPChannelParameter.h"
0006 #include "CondFormats/HcalObjects/interface/HcalCondObjectContainer.h"
0007 
0008 class HcalTPChannelParameters : public HcalCondObjectContainer<HcalTPChannelParameter> {
0009 public:
0010   //constructor definition: has to contain
0011 #ifndef HCAL_COND_SUPPRESS_DEFAULT
0012   HcalTPChannelParameters() : HcalCondObjectContainer<HcalTPChannelParameter>(nullptr) {}
0013 #endif
0014   HcalTPChannelParameters(const HcalTopology* topo) : HcalCondObjectContainer<HcalTPChannelParameter>(topo) {}
0015 
0016   std::string myname() const override { return (std::string) "HcalTPChannelParameters"; }
0017 
0018   COND_SERIALIZABLE;
0019 };
0020 
0021 #endif