CMS 3D CMS Logo

RPCandIRPCDigiProducer.cc
Go to the documentation of this file.
21 #include <sstream>
22 #include <string>
23 
24 #include <map>
25 #include <vector>
26 
29 
30 //Random Number
34 #include "CLHEP/Random/RandFlat.h"
35 
36 namespace CLHEP {
37  class HepRandomEngine;
38 }
39 
41 
42  produces<RPCDigiCollection>();
43  produces<RPCDigitizerSimLinks>("RPCDigiSimLink");
44 
45  //Name of Collection used for create the XF
46  mix_ = ps.getParameter<std::string>("mixLabel");
47  collection_for_XF = ps.getParameter<std::string>("InputCollection");
48 
50  if ( ! rng.isAvailable()) {
51  throw cms::Exception("Configuration")
52  << "RPCDigitizer requires the RandomNumberGeneratorService\n"
53  "which is not present in the configuration file. You must add the service\n"
54  "in the configuration file or remove the modules that require it.";
55  };
56 
57  theRPCSimSetUpRPC = new RPCSimSetUp(ps);
58  theRPCSimSetUpIRPC = new RPCSimSetUp(ps);
59  theRPCDigitizer = new RPCDigitizer(ps);
60  theIRPCDigitizer = new IRPCDigitizer(ps);
61  crossingFrameToken = consumes<CrossingFrame<PSimHit>>(edm::InputTag(mix_,collection_for_XF));
62 }
63 
65  delete theRPCDigitizer;
66  delete theIRPCDigitizer;
67  delete theRPCSimSetUpRPC;
68  delete theRPCSimSetUpIRPC;
69 }
70 
72 
74  eventSetup.get<MuonGeometryRecord>().get( hGeom );
75  const RPCGeometry *pGeom = &*hGeom;
76  _pGeom = &*hGeom;
78  eventSetup.get<RPCStripNoisesRcd>().get(noiseRcd);
79 
81  eventSetup.get<RPCClusterSizeRcd>().get(clsRcd);
82 
83 
84  //setup the two digi models
85  theRPCSimSetUpRPC->setGeometry( pGeom );
86  theRPCSimSetUpRPC->setRPCSetUp(noiseRcd->getVNoise(), clsRcd->getCls());
87  theRPCSimSetUpIRPC->setGeometry( pGeom );
88  theRPCSimSetUpIRPC->setRPCSetUp(noiseRcd->getVNoise(), clsRcd->getCls());
89 
90  //setup the two digitizers
91  theRPCDigitizer->setGeometry( pGeom );
92  theIRPCDigitizer->setGeometry( pGeom );
93  theRPCDigitizer->setRPCSimSetUp( theRPCSimSetUpRPC );
94  theIRPCDigitizer->setRPCSimSetUp( theRPCSimSetUpIRPC );
95 
96 }
97 
99 
101  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
102 
103  LogDebug ("RPCandIRPCDigiProducer")<<"[RPCandIRPCDigiProducer::produce] got the CLHEP::HepRandomEngine engine from the edm::Event.streamID() and edm::Service<edm::RandomNumberGenerator>";
104  LogDebug ("RPCandIRPCDigiProducer")<<"[RPCandIRPCDigiProducer::produce] test the CLHEP::HepRandomEngine by firing once RandFlat ---- this must be the first time in SimMuon/RPCDigitizer";
105  LogDebug ("RPCandIRPCDigiProducer")<<"[RPCandIRPCDigiProducer::produce] to activate the test go in RPCandIRPCDigiProducer.cc and uncomment the line below";
106 
108  e.getByToken(crossingFrameToken, cf);
109 
110  std::unique_ptr<MixCollection<PSimHit> >
111  hits( new MixCollection<PSimHit>(cf.product()) );
112 
113  // Create empty output
114  std::unique_ptr<RPCDigiCollection> pDigis(new RPCDigiCollection());
115  std::unique_ptr<RPCDigitizerSimLinks> RPCDigitSimLink(new RPCDigitizerSimLinks() );
116 
117  theRPCDigitizer->doAction(*hits, *pDigis, *RPCDigitSimLink, engine); //make "bakelite RPC" digitizer do the action
118  theIRPCDigitizer->doAction(*hits, *pDigis, *RPCDigitSimLink, engine); //make "IRPC" digitizer do the action
119 
120  e.put( std::move(pDigis));
121  //store the SimDigiLinks in the event
122  e.put(std::move(RPCDigitSimLink),"RPCDigiSimLink");
123 }
#define LogDebug(id)
T getParameter(std::string const &) const
RPCandIRPCDigiProducer(const edm::ParameterSet &ps)
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
void beginRun(const edm::Run &, const edm::EventSetup &) override
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
MuonDigiCollection< RPCDetId, RPCDigi > RPCDigiCollection
std::vector< NoiseItem > const & getVNoise() const
void produce(edm::Event &e, const edm::EventSetup &c) override
T const * product() const
Definition: Handle.h:74
T get() const
Definition: EventSetup.h:71
StreamID streamID() const
Definition: Event.h:95
std::vector< ClusterSizeItem > const & getCls() const
def move(src, dest)
Definition: eostools.py:511
Definition: Run.h:45