1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#ifndef GEOMETRY_HCALEVENTSETUP_HCALTOPOLOGYIDEALEP_H
#define GEOMETRY_HCALEVENTSETUP_HCALTOPOLOGYIDEALEP_H 1
#include <memory>
#include "FWCore/Framework/interface/ModuleFactory.h"
#include "FWCore/Framework/interface/ESProducer.h"
#include "Geometry/CaloTopology/interface/HcalTopology.h"
#include "Geometry/Records/interface/HcalRecNumberingRecord.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
namespace edm {
class ConfigurationDescriptions;
}
class HcalTopologyIdealEP : public edm::ESProducer {
public:
HcalTopologyIdealEP(const edm::ParameterSet&);
using ReturnType = std::unique_ptr<HcalTopology>;
static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
ReturnType produce(const HcalRecNumberingRecord&);
private:
// ----------member data ---------------------------
edm::ESGetToken<HcalDDDRecConstants, HcalRecNumberingRecord> m_hdcToken;
std::string m_restrictions;
bool m_mergePosition;
};
#endif
|