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