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