CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes
FastSimProducer Class Reference

The core class of the new SimplifiedGeometryPropagator. More...

Inheritance diagram for FastSimProducer:
edm::stream::EDProducer<>

Public Member Functions

 FastSimProducer (const edm::ParameterSet &)
 
 ~FastSimProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

Private Member Functions

void beginStream (edm::StreamID id) override
 
virtual FSimTrack createFSimTrack (fastsim::Particle *particle, fastsim::ParticleManager *particleManager)
 
void endStream () override
 
void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

std::unique_ptr< RandomEngineAndDistribution_randomEngine
 The random engine. More...
 
double beamPipeRadius_
 The radius of the beampipe. More...
 
fastsim::Geometry caloGeometry_
 Hack to interface "old" calo to "new" tracking. More...
 
fastsim::Decayer decayer_
 Handles decays of non-stable particles using pythia. More...
 
double deltaRchargedMother_
 Cut on deltaR for ClosestChargedDaughter algorithm (FastSim tracking) More...
 
edm::EDGetTokenT< edm::HepMCProductgenParticlesToken_
 Token to get the genParticles. More...
 
fastsim::Geometry geometry_
 The definition of the tracker according to python config. More...
 
std::map< std::string, fastsim::InteractionModel * > interactionModelMap_
 Each interaction model has a unique name. More...
 
std::vector< std::unique_ptr< fastsim::InteractionModel > > interactionModels_
 All defined interaction models. More...
 
std::unique_ptr< CalorimetryManagermyCalorimetry
 
fastsim::ParticleFilter particleFilter_
 Decides which particles have to be propagated. More...
 
bool simulateCalorimetry
 
bool simulateMuons
 
edm::ESWatcher< CaloGeometryRecordwatchCaloGeometry_
 
edm::ESWatcher< CaloTopologyRecordwatchCaloTopology_
 

Static Private Attributes

static const std::string MESSAGECATEGORY = "FastSimulation"
 Category of debugging messages ("FastSimulation") More...
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

The core class of the new SimplifiedGeometryPropagator.

Coordinates the propagation of all particles, this means it does the following loop: 1) Get particle from ParticleManager 2) Call LayerNavigator to move particle to next intersection with layer 3) Loop over all the interactions and add secondaries to the event 4) Repeat steps 2), 3) until particle left the tracker, lost all its energy or is about to decay 5) If particle is about to decay: do decay and add secondaries to the event 6) Restart from 1) with the next particle 7) If last particle was propagated add SimTracks, SimVertices, SimHits,... to the event

Definition at line 67 of file FastSimProducer.cc.

Constructor & Destructor Documentation

FastSimProducer::FastSimProducer ( const edm::ParameterSet iConfig)
explicit

Definition at line 100 of file FastSimProducer.cc.

References beamerCreator::create(), Exception, reco::get(), edm::ParameterSet::getParameter(), edm::ParameterSet::getParameterNames(), interactionModelMap_, interactionModels_, ecalBarrelClusterFastTimer_cfi::modelName, eostools::move(), myCalorimetry, simulateCalorimetry, and AlCaHLTBitMon_QueryRunRegistry::string.

101  : genParticlesToken_(consumes<edm::HepMCProduct>(iConfig.getParameter<edm::InputTag>("src")))
102  , geometry_(iConfig.getParameter<edm::ParameterSet>("trackerDefinition"))
103  , caloGeometry_(iConfig.getParameter<edm::ParameterSet>("caloDefinition"))
104  , beamPipeRadius_(iConfig.getParameter<double>("beamPipeRadius"))
105  , deltaRchargedMother_(iConfig.getParameter<double>("deltaRchargedMother"))
106  , particleFilter_(iConfig.getParameter<edm::ParameterSet>("particleFilter"))
107  , _randomEngine(nullptr)
108  , simulateCalorimetry(iConfig.getParameter<bool>("simulateCalorimetry"))
109  , simulateMuons(iConfig.getParameter<bool>("simulateMuons"))
110 {
111 
112  //----------------
113  // define interaction models
114  //---------------
115 
116  const edm::ParameterSet & modelCfgs = iConfig.getParameter<edm::ParameterSet>("interactionModels");
117  for(const std::string & modelName : modelCfgs.getParameterNames())
118  {
119  const edm::ParameterSet & modelCfg = modelCfgs.getParameter<edm::ParameterSet>(modelName);
120  std::string modelClassName(modelCfg.getParameter<std::string>("className"));
121  // Use plugin-factory to create model
122  std::unique_ptr<fastsim::InteractionModel> interactionModel(fastsim::InteractionModelFactory::get()->create(modelClassName, modelName, modelCfg));
123  if(!interactionModel.get()){
124  throw cms::Exception("FastSimProducer") << "InteractionModel " << modelName << " could not be created";
125  }
126  // Add model to list
127  interactionModels_.push_back(std::move(interactionModel));
128  // and create the map
130  }
131 
132  //----------------
133  // calorimetry
134  //---------------
135 
137  myCalorimetry.reset(new CalorimetryManager(nullptr,
138  iConfig.getParameter<edm::ParameterSet>("Calorimetry"),
139  iConfig.getParameter<edm::ParameterSet>("MaterialEffectsForMuonsInECAL"),
140  iConfig.getParameter<edm::ParameterSet>("MaterialEffectsForMuonsInHCAL"),
141  iConfig.getParameter<edm::ParameterSet>("GFlash")));
142  }
143 
144  //----------------
145  // register products
146  //----------------
147 
148  // SimTracks and SimVertices
149  produces<edm::SimTrackContainer>();
150  produces<edm::SimVertexContainer>();
151  // products of interaction models, i.e. simHits
152  for(auto & interactionModel : interactionModels_)
153  {
154  interactionModel->registerProducts(*this);
155  }
156  produces<edm::PCaloHitContainer>("EcalHitsEB");
157  produces<edm::PCaloHitContainer>("EcalHitsEE");
158  produces<edm::PCaloHitContainer>("EcalHitsES");
159  produces<edm::PCaloHitContainer>("HcalHits");
160  produces<edm::SimTrackContainer>("MuonSimTracks");
161 }
std::map< std::string, fastsim::InteractionModel * > interactionModelMap_
Each interaction model has a unique name.
std::vector< std::unique_ptr< fastsim::InteractionModel > > interactionModels_
All defined interaction models.
T getParameter(std::string const &) const
fastsim::Geometry caloGeometry_
Hack to interface "old" calo to "new" tracking.
std::unique_ptr< RandomEngineAndDistribution > _randomEngine
The random engine.
double deltaRchargedMother_
Cut on deltaR for ClosestChargedDaughter algorithm (FastSim tracking)
def create(alignables, pedeDump, additionalData, outputFile, config)
fastsim::Geometry geometry_
The definition of the tracker according to python config.
edm::EDGetTokenT< edm::HepMCProduct > genParticlesToken_
Token to get the genParticles.
double beamPipeRadius_
The radius of the beampipe.
std::vector< std::string > getParameterNames() const
std::unique_ptr< CalorimetryManager > myCalorimetry
fastsim::ParticleFilter particleFilter_
Decides which particles have to be propagated.
def move(src, dest)
Definition: eostools.py:510
T get(const Candidate &c)
Definition: component.h:55
FastSimProducer::~FastSimProducer ( )
inlineoverride

Definition at line 70 of file FastSimProducer.cc.

References beginStream(), createFSimTrack(), endStream(), and produce().

70 {;}

Member Function Documentation

void FastSimProducer::beginStream ( edm::StreamID  id)
overrideprivate

Definition at line 164 of file FastSimProducer.cc.

References _randomEngine, and triggerObjects_cff::id.

Referenced by ~FastSimProducer().

165 {
166  _randomEngine = std::make_unique<RandomEngineAndDistribution>(id);
167 }
std::unique_ptr< RandomEngineAndDistribution > _randomEngine
The random engine.
FSimTrack FastSimProducer::createFSimTrack ( fastsim::Particle particle,
fastsim::ParticleManager particleManager 
)
privatevirtual

Definition at line 403 of file FastSimProducer.cc.

References _randomEngine, fastsim::ParticleManager::addSecondaries(), caloGeometry_, fastsim::Particle::charge(), fastsim::Decayer::decay(), decayer_, DEFINE_FWK_MODULE, fastsim::SimplifiedGeometry::ECAL, fastsim::Particle::genParticleIndex(), fastsim::SimplifiedGeometry::getCaloType(), fastsim::ParticleManager::getSimVertex(), fastsim::SimplifiedGeometry::getThickness(), fastsim::SimplifiedGeometry::HCAL, fastsim::SimplifiedGeometry::isForward(), fastsim::Particle::isStable(), LogDebug, MESSAGECATEGORY, fastsim::Particle::momentum(), fastsim::LayerNavigator::moveParticleToNextLayer(), FSimTrack::onEcal(), FSimTrack::onHcal(), FSimTrack::onLayer1(), FSimTrack::onLayer2(), FSimTrack::onVFcal(), fastsim::Particle::pdgId(), fastsim::Particle::position(), fastsim::SimplifiedGeometry::PRESHOWER1, fastsim::SimplifiedGeometry::PRESHOWER2, fastsim::Particle::remainingProperLifeTimeC(), FSimTrack::setEcal(), FSimTrack::setHcal(), FSimTrack::setLayer1(), FSimTrack::setLayer2(), RawParticle::setVertex(), FSimTrack::setVFcal(), fastsim::Particle::simTrackIndex(), fastsim::Particle::simVertexIndex(), summarizeEdmComparisonLogfiles::success, and fastsim::SimplifiedGeometry::VFCAL.

Referenced by produce(), and ~FastSimProducer().

404 {
405  FSimTrack myFSimTrack(particle->pdgId(), particle->momentum(), particle->simVertexIndex(), particle->genParticleIndex(), particle->simTrackIndex(), particle->charge(), particle->position(), particle->momentum(), particleManager->getSimVertex(particle->simVertexIndex()));
406 
407  // move the particle through the caloLayers
408  fastsim::LayerNavigator caloLayerNavigator(caloGeometry_);
409  const fastsim::SimplifiedGeometry * caloLayer = nullptr;
410 
411  // moveParticleToNextLayer(..) returns 0 in case that particle decays
412  // in this case particle is propagated up to its decay vertex
413  while(caloLayerNavigator.moveParticleToNextLayer(*particle,caloLayer))
414  {
415  LogDebug(MESSAGECATEGORY) << " moved to next caloLayer: " << *caloLayer;
416  LogDebug(MESSAGECATEGORY) << " new state: " << *particle;
417 
418  // break after 25 ns: only happens for particles stuck in loops
419  if(particle->position().T() > 50)
420  {
421  caloLayer = nullptr;
422  break;
423  }
424 
426  // Define ParticlePropagators (RawParticle) needed for CalorimetryManager and save them
428 
429  RawParticle PP(particle->pdgId(), particle->momentum());
430  PP.setVertex(particle->position());
431 
432  // no material
433  if(caloLayer->getThickness(particle->position(), particle->momentum()) < 1E-10)
434  {
435  // unfortunately needed for CalorimetryManager
437  if(!myFSimTrack.onEcal())
438  {
439  myFSimTrack.setEcal(PP, 0);
440  }
441  }
442  else if(caloLayer->getCaloType() == fastsim::SimplifiedGeometry::HCAL){
443  if(!myFSimTrack.onHcal())
444  {
445  myFSimTrack.setHcal(PP, 0);
446  }
447  }
448  else if(caloLayer->getCaloType() == fastsim::SimplifiedGeometry::VFCAL){
449  if(!myFSimTrack.onVFcal())
450  {
451  myFSimTrack.setVFcal(PP, 0);
452  }
453  }
454 
455  // not necessary to continue propagation
457  {
458  caloLayer = nullptr;
459  break;
460  }
461 
462  continue;
463  }
464 
465  // Stupid variable used by the old propagator
466  // For details check BaseParticlePropagator.h
467  int success = 0;
468  if(caloLayer->isForward())
469  {
470  success = 2;
471  // particle moves inwards
472  if(particle->position().Z() * particle->momentum().Z() < 0)
473  {
474  success *= -1;
475  }
476  }
477  else
478  {
479  success = 1;
480  // particle moves inwards
481  if(particle->momentum().X() * particle->position().X() + particle->momentum().Y() * particle->position().Y() < 0)
482  {
483  success *= -1;
484  }
485  }
486 
487  // Save the hit
489  {
490  if(!myFSimTrack.onLayer1())
491  {
492  myFSimTrack.setLayer1(PP, success);
493  }
494  }
495 
497  {
498  if(!myFSimTrack.onLayer2())
499  {
500  myFSimTrack.setLayer2(PP, success);
501  }
502  }
503 
505  {
506  if(!myFSimTrack.onEcal())
507  {
508  myFSimTrack.setEcal(PP, success);
509  }
510  }
511 
513  {
514  if(!myFSimTrack.onHcal())
515  {
516  myFSimTrack.setHcal(PP, success);
517  }
518  }
519 
521  {
522  if(!myFSimTrack.onVFcal())
523  {
524  myFSimTrack.setVFcal(PP, success);
525  }
526  }
527 
528  // Particle reached end of detector
530  {
531  caloLayer = nullptr;
532  break;
533  }
534 
535  LogDebug(MESSAGECATEGORY) << "--------------------------------"
536  << "\n-------------------------------";
537  }
538 
539  // do decays
540  // don't have to worry about daughters if particle already within the calorimetry
541  // since they will be rejected by the vertex cut of the ParticleFilter
542  if(!particle->isStable() && particle->remainingProperLifeTimeC() < 1E-10)
543  {
544  LogDebug(MESSAGECATEGORY) << "Decaying particle...";
545  std::vector<std::unique_ptr<fastsim::Particle> > secondaries;
546  decayer_.decay(*particle,secondaries, _randomEngine->theEngine());
547  LogDebug(MESSAGECATEGORY) << " decay has " << secondaries.size() << " products";
548  particleManager->addSecondaries(particle->position(), particle->simTrackIndex(),secondaries);
549  }
550 
551  return myFSimTrack;
552 }
#define LogDebug(id)
fastsim::Geometry caloGeometry_
Hack to interface "old" calo to "new" tracking.
std::unique_ptr< RandomEngineAndDistribution > _randomEngine
The random engine.
Implementation of a generic detector layer (base class for forward/barrel layers).
const math::XYZTLorentzVector & position() const
Return position of the particle.
Definition: Particle.h:142
Handles/tracks (possible) intersections of particle&#39;s trajectory and tracker layers.
double remainingProperLifeTimeC() const
Return the particle&#39;s remaining proper lifetime[in ct].
Definition: Particle.h:152
int genParticleIndex() const
Return index of the particle in the genParticle vector.
Definition: Particle.h:167
fastsim::Decayer decayer_
Handles decays of non-stable particles using pythia.
virtual bool isForward() const =0
Returns false/true depending if the object is a (non-abstract) barrel/forward layer.
int pdgId() const
Return pdgId of the particle.
Definition: Particle.h:136
const SimVertex getSimVertex(unsigned i)
Returns the position of a given SimVertex. Needed for interfacing the code with the old calorimetry...
int simVertexIndex() const
Return index of the origin vertex.
Definition: Particle.h:161
CaloType getCaloType() const
Hack to interface "old" Calorimetry with "new" Tracker.
void addSecondaries(const math::XYZTLorentzVector &vertexPosition, int motherSimTrackId, std::vector< std::unique_ptr< Particle > > &secondaries, const SimplifiedGeometry *layer=nullptr)
Adds secondaries that are produced by any of the interactions (or particle decay) to the buffer...
void decay(const Particle &particle, std::vector< std::unique_ptr< Particle > > &secondaries, CLHEP::HepRandomEngine &engine) const
Decay particle using pythia.
Definition: Decayer.cc:33
int simTrackIndex() const
Return index of the SimTrack.
Definition: Particle.h:155
double charge() const
Return charge of the particle.
Definition: Particle.h:139
virtual const double getThickness(const math::XYZTLorentzVector &position) const =0
Return thickness of the layer at a given position.
static const std::string MESSAGECATEGORY
Category of debugging messages ("FastSimulation")
bool isStable() const
Returns true if particle is considered stable.
Definition: Particle.h:175
const math::XYZTLorentzVector & momentum() const
Return momentum of the particle.
Definition: Particle.h:145
void setVertex(const XYZTLorentzVector &vtx)
set the vertex
Definition: RawParticle.h:288
void FastSimProducer::endStream ( )
overrideprivate

Definition at line 397 of file FastSimProducer.cc.

References _randomEngine.

Referenced by ~FastSimProducer().

398 {
399  _randomEngine.reset();
400 }
std::unique_ptr< RandomEngineAndDistribution > _randomEngine
The random engine.
void FastSimProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 170 of file FastSimProducer.cc.

References _randomEngine, funct::abs(), beamPipeRadius_, caloGeometry_, edm::ESWatcher< T >::check(), createFSimTrack(), fastsim::Decayer::decay(), decayer_, deltaRchargedMother_, GenHFHadronMatcher_cfi::genParticles, genParticlesToken_, geometry_, edm::EventSetup::get(), edm::Event::getByToken(), fastsim::SimplifiedGeometry::getCaloType(), edm::EventSetup::getData(), edm::HepMCProduct::GetEvent(), fastsim::SimplifiedGeometry::getInteractionModels(), fastsim::Geometry::getMagneticFieldZ(), fastsim::SimplifiedGeometry::getThickness(), interactionModelMap_, interactionModels_, LogDebug, MESSAGECATEGORY, eostools::move(), fastsim::LayerNavigator::moveParticleToNextLayer(), myCalorimetry, p4, particleFilter_, edm::Event::put(), simulateCalorimetry, simulateMuons, fastsim::SimplifiedGeometry::TRACKERBOUNDARY, fastsim::Geometry::update(), watchCaloGeometry_, and watchCaloTopology_.

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), HTMLExport.HTMLExportStatic::export(), and ~FastSimProducer().

171 {
172  LogDebug(MESSAGECATEGORY) << " produce";
173 
176 
177  // Define containers for SimTracks, SimVertices
178  std::unique_ptr<edm::SimTrackContainer> simTracks_(new edm::SimTrackContainer);
179  std::unique_ptr<edm::SimVertexContainer> simVertices_(new edm::SimVertexContainer);
180 
181  // Get the particle data table (in case lifetime or charge of GenParticles not set)
183  iSetup.getData(pdt);
184  ParticleTable::Sentry ptable(&(*pdt));
185 
186  // Get the GenParticle collection
188  iEvent.getByToken(genParticlesToken_, genParticles);
189 
190  // Load the ParticleManager which returns the particles that have to be propagated
191  // Creates a fastsim::Particle out of a GenParticle/secondary
192  fastsim::ParticleManager particleManager(*genParticles->GetEvent()
193  ,*pdt
197  ,*simTracks_
198  ,*simVertices_);
199 
200  // Initialize the calorimeter geometry
202  {
203  if(watchCaloGeometry_.check(iSetup) || watchCaloTopology_.check(iSetup)){
205  iSetup.get<CaloGeometryRecord>().get(pG);
206  myCalorimetry->getCalorimeter()->setupGeometry(*pG);
207 
208  edm::ESHandle<CaloTopology> theCaloTopology;
209  iSetup.get<CaloTopologyRecord>().get(theCaloTopology);
210  myCalorimetry->getCalorimeter()->setupTopology(*theCaloTopology);
211  myCalorimetry->getCalorimeter()->initialize(geometry_.getMagneticFieldZ(math::XYZTLorentzVector(0., 0., 0., 0.)));
212 
213  myCalorimetry->getHFShowerLibrary()->initHFShowerLibrary(iSetup);
214  }
215 
216  // Important: this also cleans the calorimetry information from the last event
217  myCalorimetry->initialize(_randomEngine.get());
218  }
219 
220  // The vector of SimTracks needed for the CalorimetryManager
221  std::vector<FSimTrack> myFSimTracks;
222 
223 
224  LogDebug(MESSAGECATEGORY) << "################################"
225  << "\n###############################";
226 
227  // loop over particles
228  for(std::unique_ptr<fastsim::Particle> particle = particleManager.nextParticle(*_randomEngine); particle != nullptr; particle=particleManager.nextParticle(*_randomEngine))
229  {
230  LogDebug(MESSAGECATEGORY) << "\n moving NEXT particle: " << *particle;
231 
232  // -----------------------------
233  // This condition is necessary because of hack for calorimetry
234  // -> The CalorimetryManager should also be implemented based on this new FastSim classes (Particle.h) in a future project.
235  // A second loop (below) loops over all parts of the calorimetry in order to create a track of the old FastSim class FSimTrack.
236  // The condition below (R<128, z<302) makes sure that the particle geometrically is outside the tracker boundaries
237  // -----------------------------
238 
239  if(particle->position().Perp2() < 128.*128. && std::abs(particle->position().Z()) < 302.){
240  // move the particle through the layers
241  fastsim::LayerNavigator layerNavigator(geometry_);
242  const fastsim::SimplifiedGeometry * layer = nullptr;
243 
244  // moveParticleToNextLayer(..) returns 0 in case that particle decays
245  // in this case particle is propagated up to its decay vertex
246  while(layerNavigator.moveParticleToNextLayer(*particle,layer))
247  {
248  LogDebug(MESSAGECATEGORY) << " moved to next layer: " << *layer;
249  LogDebug(MESSAGECATEGORY) << " new state: " << *particle;
250 
251  // Hack to interface "old" calo to "new" tracking
252  // Particle reached calorimetry so stop further propagation
254  {
255  layer = nullptr;
256  // particle no longer is on a layer
257  particle->resetOnLayer();
258  break;
259  }
260 
261  // break after 25 ns: only happens for particles stuck in loops
262  if(particle->position().T() > 25)
263  {
264  layer = nullptr;
265  // particle no longer is on a layer
266  particle->resetOnLayer();
267  break;
268  }
269 
270  // perform interaction between layer and particle
271  // do only if there is actual material
272  if(layer->getThickness(particle->position(), particle->momentum()) > 1E-10){
273  int nSecondaries = 0;
274  // loop on interaction models
275  for(fastsim::InteractionModel * interactionModel : layer->getInteractionModels())
276  {
277  LogDebug(MESSAGECATEGORY) << " interact with " << *interactionModel;
278  std::vector<std::unique_ptr<fastsim::Particle> > secondaries;
279  interactionModel->interact(*particle,*layer,secondaries,*_randomEngine);
280  nSecondaries += secondaries.size();
281  particleManager.addSecondaries(particle->position(),particle->simTrackIndex(),secondaries,layer);
282  }
283 
284  // kinematic cuts: particle might e.g. lost all its energy
285  if(!particleFilter_.acceptsEn(*particle))
286  {
287  // Add endvertex if particle did not create any secondaries
288  if(nSecondaries==0) particleManager.addEndVertex(particle.get());
289  layer = nullptr;
290  break;
291  }
292  }
293 
294  LogDebug(MESSAGECATEGORY) << "--------------------------------"
295  << "\n-------------------------------";
296  }
297 
298  // do decays
299  if(!particle->isStable() && particle->remainingProperLifeTimeC() < 1E-10)
300  {
301  LogDebug(MESSAGECATEGORY) << "Decaying particle...";
302  std::vector<std::unique_ptr<fastsim::Particle> > secondaries;
303  decayer_.decay(*particle,secondaries, _randomEngine->theEngine());
304  LogDebug(MESSAGECATEGORY) << " decay has " << secondaries.size() << " products";
305  particleManager.addSecondaries(particle->position(), particle->simTrackIndex(),secondaries);
306  continue;
307  }
308 
309  LogDebug(MESSAGECATEGORY) << "################################"
310  << "\n###############################";
311  }
312 
313 
314  // -----------------------------
315  // Hack to interface "old" calorimetry with "new" propagation in tracker
316  // The CalorimetryManager has to know which particle could in principle hit which parts of the calorimeter
317  // I think it's a bit strange to propagate the particle even further (and even decay it) if it already hits
318  // some part of the calorimetry but this is how the code works...
319  // -----------------------------
320 
321  if(particle->position().Perp2() >= 128.*128. || std::abs(particle->position().Z()) >= 302.){
322 
323  LogDebug(MESSAGECATEGORY) << "\n moving particle to calorimetry: " << *particle;
324 
325  // create FSimTrack (this is the object the old propagation uses)
326  myFSimTracks.push_back(createFSimTrack(particle.get(), &particleManager));
327  // particle was decayed
328  if(!particle->isStable() && particle->remainingProperLifeTimeC() < 1E-10)
329  {
330  continue;
331  }
332 
333  LogDebug(MESSAGECATEGORY) << "################################"
334  << "\n###############################";
335  }
336 
337  // -----------------------------
338  // End Hack
339  // -----------------------------
340 
341 
342  LogDebug(MESSAGECATEGORY) << "################################"
343  << "\n###############################";
344 
345  }
346 
347  // store simTracks and simVertices
348  iEvent.put(std::move(simTracks_));
349  iEvent.put(std::move(simVertices_));
350  // store products of interaction models, i.e. simHits
351  for(auto & interactionModel : interactionModels_)
352  {
353  interactionModel->storeProducts(iEvent);
354  }
355 
356 
357  // -----------------------------
358  // Calorimetry Manager
359  // -----------------------------
361  {
362  for(auto myFSimTrack : myFSimTracks)
363  {
364  myCalorimetry->reconstructTrack(myFSimTrack, _randomEngine.get());
365  }
366  }
367 
368 
369  // -----------------------------
370  // Store Hits
371  // -----------------------------
372  std::unique_ptr<edm::PCaloHitContainer> p4(new edm::PCaloHitContainer);
373  std::unique_ptr<edm::PCaloHitContainer> p5(new edm::PCaloHitContainer);
374  std::unique_ptr<edm::PCaloHitContainer> p6(new edm::PCaloHitContainer);
375  std::unique_ptr<edm::PCaloHitContainer> p7(new edm::PCaloHitContainer);
376 
377  std::unique_ptr<edm::SimTrackContainer> m1(new edm::SimTrackContainer);
378 
380  {
381  myCalorimetry->loadFromEcalBarrel(*p4);
382  myCalorimetry->loadFromEcalEndcap(*p5);
383  myCalorimetry->loadFromPreshower(*p6);
384  myCalorimetry->loadFromHcal(*p7);
385  if(simulateMuons){
386  myCalorimetry->harvestMuonSimTracks(*m1);
387  }
388  }
389  iEvent.put(std::move(p4),"EcalHitsEB");
390  iEvent.put(std::move(p5),"EcalHitsEE");
391  iEvent.put(std::move(p6),"EcalHitsES");
392  iEvent.put(std::move(p7),"HcalHits");
393  iEvent.put(std::move(m1),"MuonSimTracks");
394 }
#define LogDebug(id)
std::map< std::string, fastsim::InteractionModel * > interactionModelMap_
Each interaction model has a unique name.
std::vector< std::unique_ptr< fastsim::InteractionModel > > interactionModels_
All defined interaction models.
edm::ESWatcher< CaloGeometryRecord > watchCaloGeometry_
void update(const edm::EventSetup &iSetup, const std::map< std::string, InteractionModel * > &interactionModelMap)
Initializes the tracker geometry.
Definition: Geometry.cc:44
std::vector< PCaloHit > PCaloHitContainer
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:136
fastsim::Geometry caloGeometry_
Hack to interface "old" calo to "new" tracking.
std::unique_ptr< RandomEngineAndDistribution > _randomEngine
The random engine.
Implementation of a generic detector layer (base class for forward/barrel layers).
Handles/tracks (possible) intersections of particle&#39;s trajectory and tracker layers.
Manages GenParticles and Secondaries from interactions.
double deltaRchargedMother_
Cut on deltaR for ClosestChargedDaughter algorithm (FastSim tracking)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:519
fastsim::Geometry geometry_
The definition of the tracker according to python config.
edm::EDGetTokenT< edm::HepMCProduct > genParticlesToken_
Token to get the genParticles.
fastsim::Decayer decayer_
Handles decays of non-stable particles using pythia.
virtual FSimTrack createFSimTrack(fastsim::Particle *particle, fastsim::ParticleManager *particleManager)
void getData(T &iHolder) const
Definition: EventSetup.h:82
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
Definition: LorentzVector.h:29
Base class for any interaction model between a particle and a tracker layer.
const std::vector< InteractionModel * > & getInteractionModels() const
Return the vector of all interaction models that are assigned with a layer.
CaloType getCaloType() const
Hack to interface "old" Calorimetry with "new" Tracker.
double p4[4]
Definition: TauolaWrapper.h:92
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
double getMagneticFieldZ(const math::XYZTLorentzVector &position) const
Initializes the tracker geometry.
Definition: Geometry.cc:161
double beamPipeRadius_
The radius of the beampipe.
void decay(const Particle &particle, std::vector< std::unique_ptr< Particle > > &secondaries, CLHEP::HepRandomEngine &engine) const
Decay particle using pythia.
Definition: Decayer.cc:33
const HepMC::GenEvent * GetEvent() const
Definition: HepMCProduct.h:38
edm::ESWatcher< CaloTopologyRecord > watchCaloTopology_
const T & get() const
Definition: EventSetup.h:59
std::vector< SimVertex > SimVertexContainer
virtual const double getThickness(const math::XYZTLorentzVector &position) const =0
Return thickness of the layer at a given position.
static const std::string MESSAGECATEGORY
Category of debugging messages ("FastSimulation")
std::unique_ptr< CalorimetryManager > myCalorimetry
bool check(const edm::EventSetup &iSetup)
Definition: ESWatcher.h:57
std::vector< SimTrack > SimTrackContainer
fastsim::ParticleFilter particleFilter_
Decides which particles have to be propagated.
def move(src, dest)
Definition: eostools.py:510

Member Data Documentation

std::unique_ptr<RandomEngineAndDistribution> FastSimProducer::_randomEngine
private

The random engine.

Definition at line 84 of file FastSimProducer.cc.

Referenced by beginStream(), createFSimTrack(), endStream(), and produce().

double FastSimProducer::beamPipeRadius_
private

The radius of the beampipe.

Definition at line 81 of file FastSimProducer.cc.

Referenced by produce().

fastsim::Geometry FastSimProducer::caloGeometry_
private

Hack to interface "old" calo to "new" tracking.

Definition at line 80 of file FastSimProducer.cc.

Referenced by createFSimTrack(), and produce().

fastsim::Decayer FastSimProducer::decayer_
private

Handles decays of non-stable particles using pythia.

Definition at line 92 of file FastSimProducer.cc.

Referenced by createFSimTrack(), and produce().

double FastSimProducer::deltaRchargedMother_
private

Cut on deltaR for ClosestChargedDaughter algorithm (FastSim tracking)

Definition at line 82 of file FastSimProducer.cc.

Referenced by produce().

edm::EDGetTokenT<edm::HepMCProduct> FastSimProducer::genParticlesToken_
private

Token to get the genParticles.

Definition at line 78 of file FastSimProducer.cc.

Referenced by produce().

fastsim::Geometry FastSimProducer::geometry_
private

The definition of the tracker according to python config.

Definition at line 79 of file FastSimProducer.cc.

Referenced by produce().

std::map<std::string, fastsim::InteractionModel *> FastSimProducer::interactionModelMap_
private

Each interaction model has a unique name.

Definition at line 94 of file FastSimProducer.cc.

Referenced by FastSimProducer(), and produce().

std::vector<std::unique_ptr<fastsim::InteractionModel> > FastSimProducer::interactionModels_
private

All defined interaction models.

Definition at line 93 of file FastSimProducer.cc.

Referenced by FastSimProducer(), and produce().

const std::string FastSimProducer::MESSAGECATEGORY = "FastSimulation"
staticprivate

Category of debugging messages ("FastSimulation")

Definition at line 95 of file FastSimProducer.cc.

Referenced by createFSimTrack(), and produce().

std::unique_ptr<CalorimetryManager> FastSimProducer::myCalorimetry
private

Definition at line 89 of file FastSimProducer.cc.

Referenced by FastSimProducer(), and produce().

fastsim::ParticleFilter FastSimProducer::particleFilter_
private

Decides which particles have to be propagated.

Definition at line 83 of file FastSimProducer.cc.

Referenced by produce().

bool FastSimProducer::simulateCalorimetry
private

Definition at line 86 of file FastSimProducer.cc.

Referenced by FastSimProducer(), and produce().

bool FastSimProducer::simulateMuons
private

Definition at line 90 of file FastSimProducer.cc.

Referenced by produce().

edm::ESWatcher<CaloGeometryRecord> FastSimProducer::watchCaloGeometry_
private

Definition at line 87 of file FastSimProducer.cc.

Referenced by produce().

edm::ESWatcher<CaloTopologyRecord> FastSimProducer::watchCaloTopology_
private

Definition at line 88 of file FastSimProducer.cc.

Referenced by produce().