CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FamosManager.cc
Go to the documentation of this file.
1 // CMSSW Header
10 
12 
14 
15 //#include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
16 //#include "RecoTracker/TkDetLayers/interface/GeometricSearchTracker.h"
21 
25 //#include "Geometry/CaloTopology/interface/CaloTopology.h"
26 
27 // HepMC headers
28 //#include "HepMC/GenEvent.h"
29 
30 // FAMOS Header
40 #include <iostream>
41 #include <memory>
42 #include <vector>
43 
44 using namespace HepMC;
45 
47  : iEvent(0),
48  myPileUpSimulator(0),
49  myCalorimetry(0),
50  m_pUseMagneticField(p.getParameter<bool>("UseMagneticField")),
51  m_Tracking(p.getParameter<bool>("SimulateTracking")),
52  m_Calorimetry(p.getParameter<bool>("SimulateCalorimetry")),
53  m_Alignment(p.getParameter<bool>("ApplyAlignment")),
54  m_pRunNumber(p.getUntrackedParameter<int>("RunNumber",1)),
55  m_pVerbose(p.getUntrackedParameter<int>("Verbosity",1))
56 {
57  // Initialize the FSimEvent
58  mySimEvent =
59  new FSimEvent(p.getParameter<edm::ParameterSet>("VertexGenerator"),
60  p.getParameter<edm::ParameterSet>("ParticleFilter"));
61 
65  p.getParameter<edm::ParameterSet>("MaterialEffects"),
66  p.getParameter<edm::ParameterSet>("TrackerSimHits"),
67  p.getParameter<edm::ParameterSet>("ActivateDecays"));
68 
69  // Initialize PileUp Producer (if requested)
71 
72  // Initialize Calorimetry Fast Simulation (if requested)
73  if ( m_Calorimetry)
74  myCalorimetry =
76  p.getParameter<edm::ParameterSet>("Calorimetry"),
77  p.getParameter<edm::ParameterSet>("MaterialEffectsForMuonsInECAL"),
78  p.getParameter<edm::ParameterSet>("MaterialEffectsForMuonsInHCAL"),
79  p.getParameter<edm::ParameterSet>("GFlash"));
80 }
81 
83 {
84  if ( mySimEvent ) delete mySimEvent;
87  if ( myCalorimetry) delete myCalorimetry;
88 }
89 
90 void
92 {
93  // Particle data table (from Pythia)
95  es.getData(pdt);
96  mySimEvent->initializePdt(&(*pdt));
97 
98  // Initialize the full (misaligned) tracker geometry
99  // (only if tracking is requested)
100  std::string misAligned = m_Alignment ? "MisAligned" : "";
101  // 1) By default, the aligned geometry is chosen (m_Alignment = false)
102  // 2) By default, the misaligned geometry is aligned
104  es.get<TrackerDigiGeometryRecord>().get(misAligned,tracker);
106 
107  // Initialize the tracker misaligned reco geometry (always needed)
108  // By default, the misaligned geometry is aligned
109  edm::ESHandle<GeometricSearchTracker> theGeomSearchTracker;
110  es.get<TrackerRecoGeometryRecord>().get(misAligned, theGeomSearchTracker );
111 
112  // Initialize the misaligned tracker interaction geometry
113  edm::ESHandle<TrackerInteractionGeometry> theTrackerInteractionGeometry;
114  es.get<TrackerInteractionGeometryRecord>().get(misAligned, theTrackerInteractionGeometry );
115 
116  // Initialize the magnetic field
117  double bField000 = 0.;
118  if (m_pUseMagneticField) {
119  edm::ESHandle<MagneticFieldMap> theMagneticFieldMap;
120  es.get<MagneticFieldMapRecord>().get(misAligned, theMagneticFieldMap);
121  const GlobalPoint g(0.,0.,0.);
122  bField000 = theMagneticFieldMap->inTeslaZ(g);
123  myTrajectoryManager->initializeRecoGeometry(&(*theGeomSearchTracker),
124  &(*theTrackerInteractionGeometry),
125  &(*theMagneticFieldMap));
126  } else {
127  myTrajectoryManager->initializeRecoGeometry(&(*theGeomSearchTracker),
128  &(*theTrackerInteractionGeometry),
129  0);
130  bField000 = 4.0;
131  }
132  // The following should be on LogInfo
133  //std::cout << "B-field(T) at (0,0,0)(cm): " << bField000 << std::endl;
134 
135  // Initialize the calorimeter geometry
136  if ( myCalorimetry ) {
138  es.get<CaloGeometryRecord>().get(pG);
140 
141  edm::ESHandle<CaloTopology> theCaloTopology;
142  es.get<CaloTopologyRecord>().get(theCaloTopology);
143  myCalorimetry->getCalorimeter()->setupTopology(*theCaloTopology);
144  myCalorimetry->getCalorimeter()->initialize(bField000);
145  }
146 
147  m_pRunNumber = run.run();
148 
149 }
150 
151 
152 void
153 FamosManager::reconstruct(const HepMC::GenEvent* evt,
154  const reco::GenParticleCollection* particles,
155  const HepMC::GenEvent* pu,
156  const TrackerTopology *tTopo,
158 {
159  // myGenEvent = evt;
160 
161  if (evt != 0 || particles != 0) {
162  iEvent++;
164 
165 
166  // Fill the event from the original generated event
167  if (evt )
168  mySimEvent->fill(*evt,id, random);
169 
170  else
171  mySimEvent->fill(*particles,id, random);
172 
173  // mySimEvent->printMCTruth(*evt);
174  /*
175  mySimEvent->print();
176  std::cout << "----------------------------------------" << std::endl;
177  */
178 
179  // Get the pileup events and add the particles to the main event
181  /*
182  mySimEvent->print();
183  std::cout << "----------------------------------------" << std::endl;
184  */
185 
186  // And propagate the particles through the detector
187  myTrajectoryManager->reconstruct(tTopo, random);
188  /*
189  mySimEvent->print();
190  std::cout << "========================================="
191  << std::endl
192  << std::endl;
193  */
194 
195  if ( myCalorimetry ) myCalorimetry->reconstruct(random);
196  }
197 
198  // Should be moved to LogInfo
199  edm::LogInfo("FamosManager") << " saved : Event " << iEvent
200  << " of weight " << mySimEvent->weight()
201  << " with " << mySimEvent->nTracks()
202  << " tracks and " << mySimEvent->nVertices()
203  << " vertices, generated by "
204  << mySimEvent->nGenParts() << " particles " << std::endl;
205 }
206 
208  iEvent++;
210  mySimEvent->fill(*particles, id, random);
211  myTrajectoryManager->reconstruct(tTopo, random);
212  if ( myCalorimetry ) myCalorimetry->reconstruct(random);
213 }
void reconstruct(const TrackerTopology *tTopo, RandomEngineAndDistribution const *)
Does the real job.
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
T getParameter(std::string const &) const
bool m_pUseMagneticField
Definition: FamosManager.h:80
void initializeTrackerGeometry(const TrackerGeometry *geomTracker)
Initialize the full Tracker Geometry.
void fill(const HepMC::GenEvent &hev, edm::EventID &Id, RandomEngineAndDistribution const *)
fill the FBaseSimEvent from the current HepMC::GenEvent
Definition: FSimEvent.cc:25
RunNumber_t run() const
Definition: RunBase.h:42
~FamosManager()
Destructor.
Definition: FamosManager.cc:82
FSimEvent * mySimEvent
Definition: FamosManager.h:73
bool m_Alignment
Definition: FamosManager.h:83
void setupTopology(const CaloTopology &)
Definition: Calorimeter.cc:127
void initializeRecoGeometry(const GeometricSearchTracker *geomSearchTracker, const TrackerInteractionGeometry *interactionGeometry, const MagneticFieldMap *aFieldMap)
Initialize the Reconstruction Geometry.
CaloGeometryHelper * getCalorimeter() const
TRandom random
Definition: MVATrainer.cc:138
TrajectoryManager * myTrajectoryManager
Definition: FamosManager.h:74
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e g
Definition: Activities.doc:4
void getData(T &iHolder) const
Definition: EventSetup.h:67
int iEvent
Definition: GenABIO.cc:230
void reconstruct(RandomEngineAndDistribution const *)
CalorimetryManager * myCalorimetry
Definition: FamosManager.h:76
FamosManager(edm::ParameterSet const &p)
Constructor.
Definition: FamosManager.cc:46
bool m_Calorimetry
Definition: FamosManager.h:82
unsigned int nTracks() const
Number of tracks.
Definition: FSimEvent.cc:47
void setupGeometry(const CaloGeometry &pG)
Definition: Calorimeter.cc:117
unsigned int nGenParts() const
Number of MC particles.
Definition: FSimEvent.cc:57
void reconstruct(const HepMC::GenEvent *evt, const reco::GenParticleCollection *particles, const HepMC::GenEvent *pu, const TrackerTopology *tTopo, RandomEngineAndDistribution const *)
The real thing is done here.
const T & get() const
Definition: EventSetup.h:55
unsigned int nVertices() const
Number of vertices.
Definition: FSimEvent.cc:52
void produce(const HepMC::GenEvent *pu)
Produce N minimum bias events, and add them to the FSimEvent.
float weight() const
Method to return the event weight.
Definition: FSimEvent.cc:42
void initializePdt(const HepPDT::ParticleDataTable *aPdt)
Initialize the particle data table.
PileUpSimulator * myPileUpSimulator
Definition: FamosManager.h:75
void initialize(double bField)
void setupGeometryAndField(edm::Run const &run, const edm::EventSetup &es)
Get information from the Event Setup.
Definition: FamosManager.cc:91
Definition: Run.h:41