CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FamosProducer.cc
Go to the documentation of this file.
5 
8 
10 
14 
23 
24 #include "HepMC/GenVertex.h"
25 #include "HepMC/GenEvent.h"
26 
27 #include <iostream>
28 #include <memory>
29 #include <vector>
30 
32 {
33 
34  produces<edm::SimTrackContainer>();
35  produces<edm::SimVertexContainer>();
36  produces<FSimVertexTypeCollection>("VertexTypes");
37  produces<edm::PSimHitContainer>("TrackerHits");
38  produces<edm::PCaloHitContainer>("EcalHitsEB");
39  produces<edm::PCaloHitContainer>("EcalHitsEE");
40  produces<edm::PCaloHitContainer>("EcalHitsES");
41  produces<edm::PCaloHitContainer>("HcalHits");
42  // Temporary facility to allow for the crossing frame to work...
43  simulateMuons = p.getParameter<bool>("SimulateMuons");
44  if ( simulateMuons ) produces<edm::SimTrackContainer>("MuonSimTracks");
45 
46  // hepmc event from signal event
47  edm::InputTag sourceLabel = p.getParameter<edm::InputTag>("SourceLabel");
48  sourceToken = consumes<edm::HepMCProduct>(sourceLabel);
49 
50  // for gen-mixing
51  edm::InputTag _label = edm::InputTag("famosPileUp","PileUpEvents");
52  puToken = consumes<edm::HepMCProduct>(_label);
53 
54  // famos manager
55  famosManager_ = new FamosManager(p);
56 }
57 
59 { if ( famosManager_ ) delete famosManager_; }
60 
61 void
64 }
65 
67 {
69  using namespace edm;
70 
72 
73  //Retrieve tracker topology from geometry
75  es.get<TrackerTopologyRcd>().get(tTopoHand);
76  const TrackerTopology *tTopo=tTopoHand.product();
77 
78  // get the signal event
79  Handle<HepMCProduct> theHepMCProduct;
80  iEvent.getByToken(sourceToken,theHepMCProduct);
81  const HepMC::GenEvent * myGenEvent = theHepMCProduct->GetEvent();
82 
83  // get the pu event (for gen-mixing)
84  Handle<HepMCProduct> thePileUpEvents;
85  bool isPileUp = iEvent.getByToken(puToken,thePileUpEvents);
86  const HepMC::GenEvent * thePUEvents = isPileUp ? thePileUpEvents->GetEvent() : 0;
87 
88  // do the simulation
89  famosManager_->reconstruct(myGenEvent,thePUEvents,tTopo, &random);
90 
91  // get the hits, simtracks and simvertices and put in the event
94 
95  std::auto_ptr<edm::SimTrackContainer> p1(new edm::SimTrackContainer);
96  std::auto_ptr<edm::SimTrackContainer> m1(new edm::SimTrackContainer);
97  std::auto_ptr<edm::SimVertexContainer> p2(new edm::SimVertexContainer);
98  std::auto_ptr<FSimVertexTypeCollection> v1(new FSimVertexTypeCollection);
99  std::auto_ptr<edm::PSimHitContainer> p3(new edm::PSimHitContainer);
100  std::auto_ptr<edm::PCaloHitContainer> p4(new edm::PCaloHitContainer);
101  std::auto_ptr<edm::PCaloHitContainer> p5(new edm::PCaloHitContainer);
102  std::auto_ptr<edm::PCaloHitContainer> p6(new edm::PCaloHitContainer);
103  std::auto_ptr<edm::PCaloHitContainer> p7(new edm::PCaloHitContainer);
104 
105  FSimEvent* fevt = famosManager_->simEvent();
106  fevt->load(*p1,*m1);
107  fevt->load(*p2);
108  fevt->load(*v1);
109  tracker->loadSimHits(*p3);
110 
111 
112  if ( calo ) {
113  calo->loadFromEcalBarrel(*p4);
114  calo->loadFromEcalEndcap(*p5);
115  calo->loadFromPreshower(*p6);
116  calo->loadFromHcal(*p7);
117  calo->loadMuonSimTracks(*m1);
118  }
119 
120  if ( simulateMuons ) iEvent.put(m1,"MuonSimTracks");
121  iEvent.put(p1);
122  iEvent.put(p2);
123  iEvent.put(p3,"TrackerHits");
124  iEvent.put(v1,"VertexTypes");
125  iEvent.put(p4,"EcalHitsEB");
126  iEvent.put(p5,"EcalHitsEE");
127  iEvent.put(p6,"EcalHitsES");
128  iEvent.put(p7,"HcalHits");
129 
130 }
131 
T getParameter(std::string const &) const
std::vector< PCaloHit > PCaloHitContainer
virtual ~FamosProducer()
void load(edm::SimTrackContainer &c, edm::SimTrackContainer &m) const
Load containers of tracks (and muons) and vertices for the edm::Event.
Definition: FSimEvent.cc:51
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
const HepPDT::ParticleDataTable * theTable() const
Get the pointer to the particle data table.
Definition: FBaseSimEvent.h:57
TRandom random
Definition: MVATrainer.cc:138
FamosManager * famosManager_
Definition: FamosProducer.h:29
virtual void beginRun(edm::Run const &run, const edm::EventSetup &es) override
FamosProducer(edm::ParameterSet const &p)
int iEvent
Definition: GenABIO.cc:230
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:115
double p4[4]
Definition: TauolaWrapper.h:92
std::vector< FSimVertexType > FSimVertexTypeCollection
collection of FSimVertexType objects
double p2[4]
Definition: TauolaWrapper.h:90
edm::EDGetTokenT< edm::HepMCProduct > puToken
Definition: FamosProducer.h:37
void reconstruct(const HepMC::GenEvent *evt, const HepMC::GenEvent *pu, const TrackerTopology *tTopo, RandomEngineAndDistribution const *)
The real thing is done here.
CalorimetryManager * calorimetryManager() const
The calorimeter.
Definition: FamosManager.h:57
edm::EDGetTokenT< edm::HepMCProduct > sourceToken
Definition: FamosProducer.h:35
const T & get() const
Definition: EventSetup.h:55
std::vector< SimVertex > SimVertexContainer
virtual void produce(edm::Event &e, const edm::EventSetup &c) override
double p1[4]
Definition: TauolaWrapper.h:89
StreamID streamID() const
Definition: Event.h:74
std::vector< PSimHit > PSimHitContainer
TrajectoryManager * trackerManager() const
The tracker.
Definition: FamosManager.h:54
FSimEvent * simEvent() const
The simulated event.
Definition: FamosManager.h:45
std::vector< SimTrack > SimTrackContainer
void setupGeometryAndField(edm::Run const &run, const edm::EventSetup &es)
Get information from the Event Setup.
Definition: FamosManager.cc:91
Definition: Run.h:41
double p3[4]
Definition: TauolaWrapper.h:91