Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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