StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
MyMcTrack.cxx
1 #include "MyMcTrack.h"
2 
3 ClassImp(MyMcTrack)
4 
6 {
7  fEnergy=0;
8  fMomentum=TVector3();
9  fPosition=TVector3();
10  fPdgId=0;
11  fStopRadius=0;
12 }
13 MyMcTrack::MyMcTrack(Float_t en,const TVector3& mom,const TVector3& pos,Int_t id,Float_t rad)
14 {
15  fEnergy=en;
16  fPosition=TVector3(pos);
17  fMomentum=TVector3(mom);
18  fPdgId=id;
19  fStopRadius=rad;
20 }
21 MyMcTrack::MyMcTrack(MyMcTrack *tr)
22 {
23  fEnergy=tr->energy();
24  fPosition=TVector3(tr->position());
25  fMomentum=TVector3(tr->momentum());
26  fPdgId=tr->id();
27  fStopRadius=tr->stopRadius();
28 }
29 MyMcTrack::~MyMcTrack()
30 {
31  //
32 }