CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoEgamma/EgammaMCTools/src/ElectronMCTruth.cc

Go to the documentation of this file.
00001 #include "RecoEgamma/EgammaMCTools/interface/ElectronMCTruth.h"
00002 
00003 #include <iostream>
00004 
00005 ElectronMCTruth::ElectronMCTruth() {
00006 
00007 }
00008 
00009 
00010 ElectronMCTruth::ElectronMCTruth( CLHEP::HepLorentzVector& v, 
00011                                   int vertIndex,
00012                                   std::vector<CLHEP::Hep3Vector>& bremPos, 
00013                                   std::vector<CLHEP::HepLorentzVector>& pBrem, 
00014                                   std::vector<float>& xBrem, 
00015                                   CLHEP::HepLorentzVector& pV,  
00016                                   SimTrack& eTrack ) :
00017   
00018   theElectron_(v), 
00019   theVertexIndex_(vertIndex), 
00020   theBremPosition_(bremPos), 
00021   theBremMomentum_(pBrem), 
00022   theELoss_(xBrem),  
00023   thePrimaryVertex_(pV), 
00024   eTrack_(eTrack) 
00025 {
00026   
00027 }
00028 
00029 
00030 
00031