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  // famos manager
51  famosManager_ = new FamosManager(p);
52 }
53 
55 { if ( famosManager_ ) delete famosManager_; }
56 
57 void
60 }
61 
63 {
65  using namespace edm;
66 
68 
69  //Retrieve tracker topology from geometry
71  es.get<TrackerTopologyRcd>().get(tTopoHand);
72  const TrackerTopology *tTopo=tTopoHand.product();
73 
74  // get the signal event
75  Handle<HepMCProduct> theHepMCProduct;
76  iEvent.getByToken(sourceToken,theHepMCProduct);
77  const HepMC::GenEvent * myGenEvent = theHepMCProduct->GetEvent();
78 
79  // do the simulation
80  famosManager_->reconstruct(myGenEvent,tTopo, &random);
81 
82  // get the hits, simtracks and simvertices and put in the event
85 
86  std::auto_ptr<edm::SimTrackContainer> p1(new edm::SimTrackContainer);
87  std::auto_ptr<edm::SimTrackContainer> m1(new edm::SimTrackContainer);
88  std::auto_ptr<edm::SimVertexContainer> p2(new edm::SimVertexContainer);
89  std::auto_ptr<FSimVertexTypeCollection> v1(new FSimVertexTypeCollection);
90  std::auto_ptr<edm::PSimHitContainer> p3(new edm::PSimHitContainer);
91  std::auto_ptr<edm::PCaloHitContainer> p4(new edm::PCaloHitContainer);
92  std::auto_ptr<edm::PCaloHitContainer> p5(new edm::PCaloHitContainer);
93  std::auto_ptr<edm::PCaloHitContainer> p6(new edm::PCaloHitContainer);
94  std::auto_ptr<edm::PCaloHitContainer> p7(new edm::PCaloHitContainer);
95 
96  FSimEvent* fevt = famosManager_->simEvent();
97  fevt->load(*p1,*m1);
98  fevt->load(*p2);
99  fevt->load(*v1);
100  tracker->loadSimHits(*p3);
101 
102 
103  if ( calo ) {
104  calo->loadFromEcalBarrel(*p4);
105  calo->loadFromEcalEndcap(*p5);
106  calo->loadFromPreshower(*p6);
107  calo->loadFromHcal(*p7);
108  calo->loadMuonSimTracks(*m1);
109  }
110 
111  if ( simulateMuons ) iEvent.put(m1,"MuonSimTracks");
112  iEvent.put(p1);
113  iEvent.put(p2);
114  iEvent.put(p3,"TrackerHits");
115  iEvent.put(v1,"VertexTypes");
116  iEvent.put(p4,"EcalHitsEB");
117  iEvent.put(p5,"EcalHitsEE");
118  iEvent.put(p6,"EcalHitsES");
119  iEvent.put(p7,"HcalHits");
120 
121 }
122 
T getParameter(std::string const &) const
void reconstruct(const HepMC::GenEvent *evt, const TrackerTopology *tTopo, RandomEngineAndDistribution const *)
The real thing is done here.
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:462
#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:121
double p4[4]
Definition: TauolaWrapper.h:92
std::vector< FSimVertexType > FSimVertexTypeCollection
collection of FSimVertexType objects
double p2[4]
Definition: TauolaWrapper.h:90
CalorimetryManager * calorimetryManager() const
The calorimeter.
Definition: FamosManager.h:56
edm::EDGetTokenT< edm::HepMCProduct > sourceToken
Definition: FamosProducer.h:35
const T & get() const
Definition: EventSetup.h:56
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:80
std::vector< PSimHit > PSimHitContainer
TrajectoryManager * trackerManager() const
The tracker.
Definition: FamosManager.h:53
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:85
Definition: Run.h:43
double p3[4]
Definition: TauolaWrapper.h:91