1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef CondFormats_HcalObjects_HcalPFCuts_h
#define CondFormats_HcalObjects_HcalPFCuts_h
#include "CondFormats/HcalObjects/interface/HcalCondObjectContainer.h"
#include "CondFormats/HcalObjects/interface/HcalPFCut.h"
class HcalPFCuts : public HcalCondObjectContainer<HcalPFCut> {
public:
#ifndef HCAL_COND_SUPPRESS_DEFAULT
HcalPFCuts() : HcalCondObjectContainer<HcalPFCut>(nullptr) {}
#endif
HcalPFCuts(const HcalTopology* topo) : HcalCondObjectContainer<HcalPFCut>(topo) {}
inline std::string myname() const override { return "HcalPFCuts"; }
private:
COND_SERIALIZABLE;
};
#endif // CondFormats_HcalObjects_HcalPFCuts_h
|