CMS 3D CMS Logo

ME0DigiProducer.cc
Go to the documentation of this file.
12 
16 
19 
20 #include <sstream>
21 #include <string>
22 #include <map>
23 #include <vector>
24 
25 namespace CLHEP {
26  class HepRandomEngine;
27 }
28 
30  : me0digiModelString_(ps.getParameter<std::string>("digiModelString"))
31 {
32  produces<ME0DigiCollection>();
33  produces<StripDigiSimLinks>("ME0");
34  produces<ME0DigiSimLinks>("ME0");
35 
37  if (!rng.isAvailable()){
38  throw cms::Exception("Configuration")
39  << "ME0DigiProducer::ME0DigiProducer() - RandomNumberGeneratorService is not present in configuration file.\n"
40  << "Add the service in the configuration file or remove the modules that require it.";
41  }
42  ME0DigiModel_ = ME0DigiModelFactory::get()->create("ME0" + me0digiModelString_ + "Model", ps);
43  LogDebug("ME0DigiProducer") << "Using ME0" + me0digiModelString_ + "Model";
44 
45  std::string mix_(ps.getParameter<std::string>("mixLabel"));
46  std::string collection_(ps.getParameter<std::string>("inputCollection"));
47 
48  cf_token = consumes<CrossingFrame<PSimHit> >(edm::InputTag(mix_, collection_));
49 }
50 
51 
53 {
54  delete ME0DigiModel_;
55 }
56 
57 
58 void ME0DigiProducer::beginRun(const edm::Run&, const edm::EventSetup& eventSetup)
59 {
61  eventSetup.get<MuonGeometryRecord>().get(hGeom);
62  ME0DigiModel_->setGeometry(&*hGeom);
64 }
65 
66 
68 {
70  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
71 
73  e.getByToken(cf_token, cf);
74 
75  std::unique_ptr<MixCollection<PSimHit> > hits(new MixCollection<PSimHit>(cf.product()));
76 
77  // Create empty output
78  std::unique_ptr<ME0DigiCollection> digis(new ME0DigiCollection());
79  std::unique_ptr<StripDigiSimLinks> stripDigiSimLinks(new StripDigiSimLinks() );
80  std::unique_ptr<ME0DigiSimLinks> me0DigiSimLinks(new ME0DigiSimLinks() );
81 
82  // arrange the hits by eta partition
83  std::map<uint32_t, edm::PSimHitContainer> hitMap;
84  for (const auto& hit: *hits){
85  hitMap[hit.detUnitId()].emplace_back(hit);
86  }
87 
88  // simulate signal and noise for each eta partition
89  const auto & etaPartitions(ME0DigiModel_->getGeometry()->etaPartitions());
90 
91  for (const auto& roll: etaPartitions){
92  const ME0DetId detId(roll->id());
93  const uint32_t rawId(detId.rawId());
94  const auto & simHits(hitMap[rawId]);
95 
96  LogDebug("ME0DigiProducer")
97  << "ME0DigiProducer: found " << simHits.size() << " hit(s) in eta partition" << rawId;
98 
99  ME0DigiModel_->simulateSignal(roll, simHits, engine);
100  ME0DigiModel_->simulateNoise(roll, engine);
101  ME0DigiModel_->fillDigis(rawId, *digis);
102  (*stripDigiSimLinks).insert(ME0DigiModel_->stripDigiSimLinks());
103  (*me0DigiSimLinks).insert(ME0DigiModel_->me0DigiSimLinks());
104  }
105 
106  // store them in the event
107  e.put(std::move(digis));
108  e.put(std::move(stripDigiSimLinks),"ME0");
109  e.put(std::move(me0DigiSimLinks),"ME0");
110 }
111 
#define LogDebug(id)
T getParameter(std::string const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:137
void fillDigis(int rollDetId, ME0DigiCollection &)
Definition: ME0DigiModel.cc:5
ME0DigiModel * ME0DigiModel_
void beginRun(const edm::Run &, const edm::EventSetup &) override
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
ME0DigiProducer(const edm::ParameterSet &ps)
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
virtual void setup()=0
MuonDigiCollection< ME0DetId, ME0Digi > ME0DigiCollection
~ME0DigiProducer() override
void setGeometry(const ME0Geometry *geom)
Definition: ME0DigiModel.h:41
virtual void simulateNoise(const ME0EtaPartition *, CLHEP::HepRandomEngine *engine)=0
edm::DetSetVector< ME0DigiSimLink > ME0DigiSimLinks
const std::vector< ME0EtaPartition const * > & etaPartitions() const
Return a vector of all ME0 eta partitions.
Definition: ME0Geometry.cc:59
edm::DetSetVector< StripDigiSimLink > StripDigiSimLinks
T const * product() const
Definition: Handle.h:81
const StripDigiSimLinks & stripDigiSimLinks() const
Definition: ME0DigiModel.h:56
const ME0DigiSimLinks & me0DigiSimLinks() const
Definition: ME0DigiModel.h:57
const ME0Geometry * getGeometry()
Definition: ME0DigiModel.h:43
T get() const
Definition: EventSetup.h:63
StreamID streamID() const
Definition: Event.h:96
edm::EDGetTokenT< CrossingFrame< PSimHit > > cf_token
virtual void simulateSignal(const ME0EtaPartition *, const edm::PSimHitContainer &, CLHEP::HepRandomEngine *engine)=0
std::string me0digiModelString_
void produce(edm::Event &, const edm::EventSetup &) override
def move(src, dest)
Definition: eostools.py:510
T get(const Candidate &c)
Definition: component.h:55
Definition: Run.h:44