00001 #include "PerGenEvent/PerGenParticle.h"
00002
00003 PerGenParticle::PerGenParticle()
00004 : momentum()
00005 , pdgId(0)
00006 , status(0)
00007 , polTheta(0)
00008 , polPhi(0)
00009
00010
00011 , barcode(-1)
00012 {
00013 }
00014 PerGenParticle::PerGenParticle(CLHEP::HepLorentzVector in_momentum,
00015 int in_pdgId,
00016 int in_status,
00017 double in_polTheta,
00018 double in_polPhi,
00019 int in_barcode)
00020 : momentum(in_momentum)
00021 , pdgId(in_pdgId)
00022 , status(in_status)
00023 , polTheta(in_polTheta)
00024 , polPhi(in_polPhi)
00025
00026
00027 , barcode(in_barcode)
00028 {
00029 }
00030 PerGenParticle::~PerGenParticle()
00031 {
00032
00033 }
00034