CMS 3D CMS Logo

PhotonMCTruth.cc
Go to the documentation of this file.
1 
4 
5 #include <iostream>
6 
7 
8 PhotonMCTruth::PhotonMCTruth(int isAConversion,
9  CLHEP::HepLorentzVector phoMom,
10  int vertIndex,
11  int trackId,
12  int motherId,
13  CLHEP::HepLorentzVector mothMom,
14  CLHEP::HepLorentzVector mothVtx,
15  CLHEP::HepLorentzVector convVertex,
16  CLHEP::HepLorentzVector pV,
17  std::vector<ElectronMCTruth>& electrons ) :
18  isAConversion_(isAConversion),
19  thePhoton_(phoMom),
20  theVertexIndex_(vertIndex),
21  theTrackId_(trackId),
22  theMotherId_(motherId),
23  theMotherMom_(mothMom),
24  theMotherVtx_(mothVtx),
25  theConvVertex_(convVertex),
26  thePrimaryVertex_(pV),
27  theElectrons_(electrons) {
28 
29 
30 }
31 
32 
33 
34