CMS 3D CMS Logo

GEMDigiProducer.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  : digiModelString_(ps.getParameter<std::string>("digiModelString"))
31 {
32  produces<GEMDigiCollection>();
33  produces<StripDigiSimLinks>("GEM");
34  produces<GEMDigiSimLinks>("GEM");
35 
37  if (!rng.isAvailable()){
38  throw cms::Exception("Configuration")
39  << "GEMDigiProducer::GEMDigiProducer() - 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  gemDigiModel_ = GEMDigiModelFactory::get()->create("GEM" + digiModelString_ + "Model", ps);
43  LogDebug("GEMDigiProducer") << "Using GEM" + digiModelString_ + "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 gemDigiModel_;
55 }
56 
57 
58 void GEMDigiProducer::beginRun(const edm::Run&, const edm::EventSetup& eventSetup)
59 {
61  eventSetup.get<MuonGeometryRecord>().get(hGeom);
62  gemDigiModel_->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<GEMDigiCollection> digis(new GEMDigiCollection());
79  std::unique_ptr<StripDigiSimLinks> stripDigiSimLinks(new StripDigiSimLinks() );
80  std::unique_ptr<GEMDigiSimLinks> gemDigiSimLinks(new GEMDigiSimLinks() );
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(gemDigiModel_->getGeometry()->etaPartitions());
90 
91  for (const auto& roll: etaPartitions){
92  const GEMDetId detId(roll->id());
93  const uint32_t rawId(detId.rawId());
94  const auto & simHits(hitMap[rawId]);
95 
96  LogDebug("GEMDigiProducer")
97  << "GEMDigiProducer: found " << simHits.size() << " hit(s) in eta partition" << rawId;
98 
99  gemDigiModel_->simulateSignal(roll, simHits, engine);
100  gemDigiModel_->simulateNoise(roll, engine);
101  gemDigiModel_->fillDigis(rawId, *digis);
102  (*stripDigiSimLinks).insert(gemDigiModel_->stripDigiSimLinks());
103  (*gemDigiSimLinks).insert(gemDigiModel_->gemDigiSimLinks());
104  }
105 
106  // store them in the event
107  e.put(std::move(digis));
108  e.put(std::move(stripDigiSimLinks),"GEM");
109  e.put(std::move(gemDigiSimLinks),"GEM");
110 }
111 
const GEMDigiSimLinks & gemDigiSimLinks() const
Definition: GEMDigiModel.h:57
#define LogDebug(id)
T getParameter(std::string const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:122
void setGeometry(const GEMGeometry *geom)
Definition: GEMDigiModel.h:41
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:460
std::string digiModelString_
const GEMGeometry * getGeometry()
Definition: GEMDigiModel.h:43
virtual void simulateNoise(const GEMEtaPartition *, CLHEP::HepRandomEngine *engine)=0
edm::DetSetVector< StripDigiSimLink > StripDigiSimLinks
GEMDigiModel * gemDigiModel_
MuonDigiCollection< GEMDetId, GEMDigi > GEMDigiCollection
virtual void simulateSignal(const GEMEtaPartition *, const edm::PSimHitContainer &, CLHEP::HepRandomEngine *engine)=0
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
const StripDigiSimLinks & stripDigiSimLinks() const
Definition: GEMDigiModel.h:56
virtual void setup()=0
const std::vector< const GEMEtaPartition * > & etaPartitions() const
Return a vector of all GEM eta partitions.
Definition: GEMGeometry.cc:63
GEMDigiProducer(const edm::ParameterSet &ps)
edm::EDGetTokenT< CrossingFrame< PSimHit > > cf_token
T const * product() const
Definition: Handle.h:81
virtual ~GEMDigiProducer()
virtual void beginRun(const edm::Run &, const edm::EventSetup &) override
const T & get() const
Definition: EventSetup.h:56
virtual void produce(edm::Event &, const edm::EventSetup &) override
StreamID streamID() const
Definition: Event.h:81
edm::DetSetVector< GEMDigiSimLink > GEMDigiSimLinks
void fillDigis(int rollDetId, GEMDigiCollection &)
Definition: GEMDigiModel.cc:5
def move(src, dest)
Definition: eostools.py:510
T get(const Candidate &c)
Definition: component.h:55
Definition: Run.h:42