Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:56

0001 #include "RecoEgamma/EgammaMCTools/interface/ElectronMCTruth.h"
0002 
0003 #include <iostream>
0004 
0005 ElectronMCTruth::ElectronMCTruth() {}
0006 
0007 ElectronMCTruth::ElectronMCTruth(CLHEP::HepLorentzVector& v,
0008                                  int vertIndex,
0009                                  std::vector<CLHEP::Hep3Vector>& bremPos,
0010                                  std::vector<CLHEP::HepLorentzVector>& pBrem,
0011                                  std::vector<float>& xBrem,
0012                                  CLHEP::HepLorentzVector& pV,
0013                                  SimTrack& eTrack)
0014     :
0015 
0016       theElectron_(v),
0017       theVertexIndex_(vertIndex),
0018       theBremPosition_(bremPos),
0019       theBremMomentum_(pBrem),
0020       theELoss_(xBrem),
0021       thePrimaryVertex_(pV),
0022       eTrack_(eTrack) {}