File indexing completed on 2024-04-06 12:02:13
0001 #ifndef HcalLongRecoParams_h
0002 #define HcalLongRecoParams_h
0003
0004 #include "CondFormats/Serialization/interface/Serializable.h"
0005
0006 #include "CondFormats/HcalObjects/interface/HcalLongRecoParam.h"
0007 #include "CondFormats/HcalObjects/interface/HcalCondObjectContainer.h"
0008
0009 class HcalLongRecoParams : public HcalCondObjectContainer<HcalLongRecoParam> {
0010 public:
0011 #ifndef HCAL_COND_SUPPRESS_DEFAULT
0012 HcalLongRecoParams() : HcalCondObjectContainer<HcalLongRecoParam>(nullptr) {}
0013 #endif
0014 HcalLongRecoParams(const HcalTopology* topo) : HcalCondObjectContainer<HcalLongRecoParam>(topo) {}
0015
0016 std::string myname() const override { return (std::string) "HcalLongRecoParams"; }
0017
0018 private:
0019 COND_SERIALIZABLE;
0020 };
0021 #endif