CMS 3D CMS Logo

ME0DigiPreRecoProducer.cc
Go to the documentation of this file.
9 
13 
16 
17 #include <sstream>
18 #include <string>
19 #include <map>
20 #include <vector>
21 
22 namespace CLHEP {
23  class HepRandomEngine;
24 }
25 
27  : digiPreRecoModelString_(ps.getParameter<std::string>("digiPreRecoModelString"))
28  , me0DigiPreRecoModel_{ME0DigiPreRecoModelFactory::get()->create("ME0" + digiPreRecoModelString_ + "Model", ps)}
29 {
30  produces<ME0DigiPreRecoCollection>();
31 
33  if (!rng.isAvailable()){
34  throw cms::Exception("Configuration")
35  << "ME0DigiPreRecoProducer::ME0PreRecoDigiProducer() - RandomNumberGeneratorService is not present in configuration file.\n"
36  << "Add the service in the configuration file or remove the modules that require it.";
37  }
38  LogDebug("ME0DigiPreRecoProducer") << "Using ME0" + digiPreRecoModelString_ + "Model";
39 
40  std::string mix_(ps.getParameter<std::string>("mixLabel"));
41  std::string collection_(ps.getParameter<std::string>("inputCollection"));
42 
43  cf_token = consumes<CrossingFrame<PSimHit> >(edm::InputTag(mix_, collection_));
44 }
45 
46 
48 
50 {
51  // set geometry
53  eventSetup.get<MuonGeometryRecord>().get(hGeom);
54  me0DigiPreRecoModel_->setGeometry(&*hGeom);
55  me0DigiPreRecoModel_->setup();
56 }
57 
58 
60 {
62  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
63 
65  e.getByToken(cf_token, cf);
66 
68 
69  // Create empty output
70  auto digis = std::make_unique<ME0DigiPreRecoCollection>();
71 
72  // arrange the hits by eta partition
73  std::map<uint32_t, edm::PSimHitContainer> hitMap;
74  for (const auto& hit: hits){
75  hitMap[hit.detUnitId()].push_back(hit);
76  }
77 
78  // simulate signal and noise for each eta partition
79  const auto & etaPartitions(me0DigiPreRecoModel_->getGeometry()->etaPartitions());
80 
81  for (const auto& roll: etaPartitions){
82  const ME0DetId detId(roll->id());
83  const uint32_t rawId(detId.rawId());
84  const auto & simHits(hitMap[rawId]);
85 
86  LogDebug("ME0DigiPreRecoProducer")
87  << "ME0DigiPreRecoProducer: found " << simHits.size() << " hit(s) in eta partition" << rawId;
88 
89  me0DigiPreRecoModel_->simulateSignal(roll, simHits, engine);
90  me0DigiPreRecoModel_->simulateNoise(roll, engine);
91  me0DigiPreRecoModel_->fillDigis(rawId, *digis);
92  }
93 
94  // store them in the event
95  e.put(std::move(digis));
96 }
97 
#define LogDebug(id)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
std::unique_ptr< ME0DigiPreRecoModel > me0DigiPreRecoModel_
void beginRun(const edm::Run &, const edm::EventSetup &) override
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
ME0DigiPreRecoProducer(const edm::ParameterSet &ps)
~ME0DigiPreRecoProducer() override
void produce(edm::Event &, const edm::EventSetup &) override
edm::EDGetTokenT< CrossingFrame< PSimHit > > cf_token
T const * product() const
Definition: Handle.h:74
T get() const
Definition: EventSetup.h:71
StreamID streamID() const
Definition: Event.h:95
def move(src, dest)
Definition: eostools.py:511
T get(const Candidate &c)
Definition: component.h:55
Definition: Run.h:45