CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ME0DigiPreRecoProducer.cc
Go to the documentation of this file.
1 #ifndef SimMuon_GEMDigitizer_ME0DigiPreRecoProducer_h
2 #define SimMuon_GEMDigitizer_ME0DigiPreRecoProducer_h
3 
15 
20 
23 
26 
27 #include <sstream>
28 #include <string>
29 #include <map>
30 #include <vector>
31 
32 namespace CLHEP {
33  class HepRandomEngine;
34 }
35 
37 public:
38  explicit ME0DigiPreRecoProducer(const edm::ParameterSet& ps);
39 
40  ~ME0DigiPreRecoProducer() override;
41 
42  void beginRun(const edm::Run&, const edm::EventSetup&) override;
43 
44  void produce(edm::Event&, const edm::EventSetup&) override;
45 
46 private:
47  //Name of Collection used for create the XF
49 
51  std::unique_ptr<ME0DigiPreRecoModel> me0DigiPreRecoModel_;
52 };
53 
55  : digiPreRecoModelString_(ps.getParameter<std::string>("digiPreRecoModelString")),
56  me0DigiPreRecoModel_{ME0DigiPreRecoModelFactory::get()->create("ME0" + digiPreRecoModelString_ + "Model", ps)} {
57  produces<ME0DigiPreRecoCollection>();
58 
60  if (!rng.isAvailable()) {
61  throw cms::Exception("Configuration")
62  << "ME0DigiPreRecoProducer::ME0PreRecoDigiProducer() - RandomNumberGeneratorService is not present in "
63  "configuration file.\n"
64  << "Add the service in the configuration file or remove the modules that require it.";
65  }
66  LogDebug("ME0DigiPreRecoProducer") << "Using ME0" + digiPreRecoModelString_ + "Model";
67 
68  std::string mix_(ps.getParameter<std::string>("mixLabel"));
69  std::string collection_(ps.getParameter<std::string>("inputCollection"));
70 
71  cf_token = consumes<CrossingFrame<PSimHit> >(edm::InputTag(mix_, collection_));
72 }
73 
75 
77  // set geometry
79  eventSetup.get<MuonGeometryRecord>().get(hGeom);
80  me0DigiPreRecoModel_->setGeometry(&*hGeom);
81  me0DigiPreRecoModel_->setup();
82 }
83 
86  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
87 
89  e.getByToken(cf_token, cf);
90 
92 
93  // Create empty output
94  auto digis = std::make_unique<ME0DigiPreRecoCollection>();
95 
96  // arrange the hits by eta partition
97  std::map<uint32_t, edm::PSimHitContainer> hitMap;
98  for (const auto& hit : hits) {
99  hitMap[hit.detUnitId()].push_back(hit);
100  }
101 
102  // simulate signal and noise for each eta partition
103  const auto& etaPartitions(me0DigiPreRecoModel_->getGeometry()->etaPartitions());
104 
105  for (const auto& roll : etaPartitions) {
106  const ME0DetId detId(roll->id());
107  const uint32_t rawId(detId.rawId());
108  const auto& simHits(hitMap[rawId]);
109 
110  LogDebug("ME0DigiPreRecoProducer") << "ME0DigiPreRecoProducer: found " << simHits.size()
111  << " hit(s) in eta partition" << rawId;
112 
113  me0DigiPreRecoModel_->simulateSignal(roll, simHits, engine);
114  me0DigiPreRecoModel_->simulateNoise(roll, engine);
115  me0DigiPreRecoModel_->fillDigis(rawId, *digis);
116  }
117 
118  // store them in the event
119  e.put(std::move(digis));
120 }
121 
123 #endif
#define LogDebug(id)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
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)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
~ME0DigiPreRecoProducer() override
void produce(edm::Event &, const edm::EventSetup &) override
edm::EDGetTokenT< CrossingFrame< PSimHit > > cf_token
T const * product() const
Definition: Handle.h:69
T get() const
Definition: EventSetup.h:73
StreamID streamID() const
Definition: Event.h:96
def move(src, dest)
Definition: eostools.py:511
Definition: Run.h:45