CMS 3D CMS Logo

OscarProducer.cc
Go to the documentation of this file.
2 
6 
9 
15 
17 
20 
23 #include "Randomize.hh"
24 
27 
28 #include <iostream>
29 
30 namespace edm {
31  class StreamID;
32 }
33 
34 namespace {
35  //
36  // this machinery allows to set CLHEP static engine
37  // to the one defined by RandomNumberGenerator service
38  // at the beginning of an event, and reset it back to
39  // "default-default" at the end of the event;
40  // Dave D. has decided to implement it this way because
41  // we don't know if there're other modules using CLHEP
42  // static engine, thus we want to ensure that the one
43  // we use for OscarProducer is unique to OscarProducer
44  //
45  // !!! This not only sets the random engine used by GEANT.
46  // There are a few SimWatchers/SimProducers that generate
47  // random number and also use the global CLHEP random engine
48  // set by this code. If we ever change this design be careful
49  // not to forget about them!!!
50 
51  class StaticRandomEngineSetUnset {
52  public:
53  StaticRandomEngineSetUnset(edm::StreamID const&);
54  explicit StaticRandomEngineSetUnset(CLHEP::HepRandomEngine * engine);
55  ~StaticRandomEngineSetUnset();
56  private:
57  CLHEP::HepRandomEngine* m_currentEngine;
58  CLHEP::HepRandomEngine* m_previousEngine;
59  };
60 }
61 
63 {
64  // Random number generation not allowed here
65  StaticRandomEngineSetUnset random(nullptr);
66 
69 
70  consumes<edm::HepMCProduct>(p.getParameter<edm::InputTag>("HepMCProductLabel"));
71  m_runManager.reset(new RunManager(p, consumesCollector()));
72 
73  produces<edm::SimTrackContainer>().setBranchAlias("SimTracks");
74  produces<edm::SimVertexContainer>().setBranchAlias("SimVertices");
75  produces<edm::PSimHitContainer>("TrackerHitsPixelBarrelLowTof");
76  produces<edm::PSimHitContainer>("TrackerHitsPixelBarrelHighTof");
77  produces<edm::PSimHitContainer>("TrackerHitsTIBLowTof");
78  produces<edm::PSimHitContainer>("TrackerHitsTIBHighTof");
79  produces<edm::PSimHitContainer>("TrackerHitsTIDLowTof");
80  produces<edm::PSimHitContainer>("TrackerHitsTIDHighTof");
81  produces<edm::PSimHitContainer>("TrackerHitsPixelEndcapLowTof");
82  produces<edm::PSimHitContainer>("TrackerHitsPixelEndcapHighTof");
83  produces<edm::PSimHitContainer>("TrackerHitsTOBLowTof");
84  produces<edm::PSimHitContainer>("TrackerHitsTOBHighTof");
85  produces<edm::PSimHitContainer>("TrackerHitsTECLowTof");
86  produces<edm::PSimHitContainer>("TrackerHitsTECHighTof");
87 
88  produces<edm::PSimHitContainer>("TotemHitsT1");
89  produces<edm::PSimHitContainer>("TotemHitsT2Gem");
90  produces<edm::PSimHitContainer>("TotemHitsRP");
91  produces<edm::PSimHitContainer>("FP420SI");
92  produces<edm::PSimHitContainer>("BSCHits");
93  produces<edm::PSimHitContainer>("PLTHits");
94  produces<edm::PSimHitContainer>("BCM1FHits");
95  produces<edm::PSimHitContainer>("BHMHits");
96  produces<edm::PSimHitContainer>("FastTimerHitsBarrel");
97  produces<edm::PSimHitContainer>("FastTimerHitsEndcap");
98 
99  produces<edm::PCaloHitContainer>("EcalHitsEB");
100  produces<edm::PCaloHitContainer>("EcalHitsEE");
101  produces<edm::PCaloHitContainer>("EcalHitsES");
102  produces<edm::PCaloHitContainer>("HcalHits");
103  produces<edm::PCaloHitContainer>("CaloHitsTk");
104  produces<edm::PCaloHitContainer>("HGCHitsEE");
105  produces<edm::PCaloHitContainer>("HGCHitsHEfront");
106  produces<edm::PCaloHitContainer>("HGCHitsHEback");
107 
108  produces<edm::PSimHitContainer>("MuonDTHits");
109  produces<edm::PSimHitContainer>("MuonCSCHits");
110  produces<edm::PSimHitContainer>("MuonRPCHits");
111  produces<edm::PSimHitContainer>("MuonGEMHits");
112  produces<edm::PSimHitContainer>("MuonME0Hits");
113 
114  produces<edm::PCaloHitContainer>("CastorPL");
115  produces<edm::PCaloHitContainer>("CastorFI");
116  produces<edm::PCaloHitContainer>("CastorBU");
117  produces<edm::PCaloHitContainer>("CastorTU");
118  produces<edm::PCaloHitContainer>("EcalTBH4BeamHits");
119  produces<edm::PCaloHitContainer>("HcalTB06BeamHits");
120  produces<edm::PCaloHitContainer>("ZDCHITS");
121  produces<edm::PCaloHitContainer>("ChamberHits");
122  produces<edm::PCaloHitContainer>("FibreHits");
123  produces<edm::PCaloHitContainer>("WedgeHits");
124 
125  //register any products
126  m_producers = m_runManager->producers();
127 
128  for(Producers::iterator itProd = m_producers.begin();
129  itProd != m_producers.end(); ++itProd) {
130 
131  (*itProd)->registerProducts(*this);
132  }
133 
134  //UIsession manager for message handling
135  m_UIsession.reset(new CustomUIsession());
136 }
137 
139 { }
140 
141 void
143 {
144  // Random number generation not allowed here
145  StaticRandomEngineSetUnset random(nullptr);
146  m_runManager->initG4(es);
147 }
148 
149 void
151 {
152  m_runManager->stopG4();
153 }
154 
156 {
157  StaticRandomEngineSetUnset random(e.streamID());
158 
159  std::vector<SensitiveTkDetector*>& sTk =
160  m_runManager->sensTkDetectors();
161  std::vector<SensitiveCaloDetector*>& sCalo =
162  m_runManager->sensCaloDetectors();
163 
164  try { m_runManager->produce(e, es); }
165  catch ( const SimG4Exception& simg4ex ) {
166 
167  edm::LogInfo("SimG4CoreApplication") << "SimG4Exception caght! "
168  << simg4ex.what();
169  m_runManager->stopG4();
170 
172  << "SimG4CoreApplication exception in generation of event "
173  << e.id() << " in stream " << e.streamID() << " \n"
174  << simg4ex.what();
175  }
176 
177  std::unique_ptr<edm::SimTrackContainer>
179  std::unique_ptr<edm::SimVertexContainer>
181  G4SimEvent * evt = m_runManager->simEvent();
182  evt->load(*p1);
183  evt->load(*p2);
184 
185  e.put(std::move(p1));
186  e.put(std::move(p2));
187 
188  for (auto & tracker : sTk) {
189 
190  const std::vector<std::string>& v = tracker->getNames();
191  for (auto & name : v) {
192 
193  std::unique_ptr<edm::PSimHitContainer>
194  product(new edm::PSimHitContainer);
195  tracker->fillHits(*product,name);
196  e.put(std::move(product),name);
197  }
198  }
199  for (auto & calo : sCalo) {
200 
201  const std::vector<std::string>& v = calo->getNames();
202 
203  for (auto & name : v) {
204 
205  std::unique_ptr<edm::PCaloHitContainer>
206  product(new edm::PCaloHitContainer);
207  calo->fillHits(*product,name);
208  e.put(std::move(product),name);
209  }
210  }
211 
212  for(auto & prod : m_producers) {
213  prod.get()->produce(e,es);
214  }
215 }
216 
217 StaticRandomEngineSetUnset::StaticRandomEngineSetUnset(
218  edm::StreamID const& streamID)
219 {
221  if ( ! rng.isAvailable()) {
222  throw cms::Exception("Configuration")
223  << "The OscarProducer module requires the RandomNumberGeneratorService\n"
224  "which is not present in the configuration file. You must add the service\n"
225  "in the configuration file if you want to run OscarProducer";
226  }
227  m_currentEngine = &(rng->getEngine(streamID));
228 
229  // Must use G4Random instead of CLHEP::HepRandom even for the serial
230  // version if Geant4 has been built with MT enabled. If G4 was built
231  // with MT disabled G4Random is defined to be CLHEP::HepRandom,
232  // preserving the old behaviour.
233  m_previousEngine = G4Random::getTheEngine();
234  G4Random::setTheEngine(m_currentEngine);
235 }
236 
237 StaticRandomEngineSetUnset::StaticRandomEngineSetUnset(
238  CLHEP::HepRandomEngine * engine)
239 {
240  m_currentEngine = engine;
241  m_previousEngine = G4Random::getTheEngine();
242  G4Random::setTheEngine(m_currentEngine);
243 }
244 
245 StaticRandomEngineSetUnset::~StaticRandomEngineSetUnset()
246 {
247  G4Random::setTheEngine(m_previousEngine);
248 }
249 
T getParameter(std::string const &) const
std::vector< PCaloHit > PCaloHitContainer
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:137
void endRun(const edm::Run &r, const edm::EventSetup &c) override
OscarProducer(edm::ParameterSet const &p)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
TRandom random
Definition: MVATrainer.cc:138
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
void beginRun(const edm::Run &r, const edm::EventSetup &c) override
const char * what() const override
static const std::string kGEANT
bool isAvailable() const
Definition: Service.h:46
void produce(edm::Event &e, const edm::EventSetup &c) override
static const std::string kCLHEPRandomEngine
double p2[4]
Definition: TauolaWrapper.h:90
void load(edm::SimTrackContainer &c) const
Definition: G4SimEvent.cc:40
std::vector< SimVertex > SimVertexContainer
edm::EventID id() const
Definition: EventBase.h:60
~OscarProducer() override
HLT enums.
double p1[4]
Definition: TauolaWrapper.h:89
StreamID streamID() const
Definition: Event.h:96
std::vector< PSimHit > PSimHitContainer
std::vector< SimTrack > SimTrackContainer
def move(src, dest)
Definition: eostools.py:510
Definition: Run.h:44