CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
CaloSimulationConstantsESModule.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: CaloSimulationConstantsESModule
4 // Class: CaloSimulationConstantsESModule
5 //
13 //
14 // Original Author: Sunanda Banerjee
15 // Created: Mon Aug 12 16:40:29 PDT 2019
16 //
17 //
18 
19 #include <memory>
20 
24 
27 
28 //#define EDM_ML_DEBUG
29 
31 public:
33 
34  using ReturnType = std::unique_ptr<CaloSimulationConstants>;
35 
37 
39 
40 private:
42 };
43 
45 #ifdef EDM_ML_DEBUG
46  edm::LogVerbatim("HcalGeom") << "constructing CaloSimulationConstantsESModule";
47 #endif
48  auto cc = setWhatProduced(this);
50 }
51 
54  descriptions.add("caloSimulationConstants", desc);
55 }
56 
57 // ------------ method called to produce the data ------------
59  const HcalSimNumberingRecord& iRecord) {
60  const auto& parSim = iRecord.get(parSimToken_);
61  return std::make_unique<CaloSimulationConstants>(&parSim);
62 }
63 
64 //define this as a plug-in
Log< level::Info, true > LogVerbatim
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:163
static void fillDescriptions(edm::ConfigurationDescriptions &)
std::unique_ptr< CaloSimulationConstants > ReturnType
ProductT const & get(ESGetToken< ProductT, DepRecordT > const &iToken) const
edm::ESGetToken< CaloSimulationParameters, HcalParametersRcd > parSimToken_
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:60
void add(std::string const &label, ParameterSetDescription const &psetDescription)
ReturnType produce(const HcalSimNumberingRecord &)
CaloSimulationConstantsESModule(const edm::ParameterSet &)