]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ALIFAST/AliFTrack.cxx
update info about cvs installation using cvs account
[u/mrichter/AliRoot.git] / ALIFAST / AliFTrack.cxx
1
2 //////////////////////////////////////////////////////////////////////////
3 //                                                                      //
4 // AliFast Track class                                                  //
5 //                                                                      //
6 //////////////////////////////////////////////////////////////////////////
7
8 #include "AliFTrack.h"
9 #include "AliFast.h"
10
11 ClassImp(AliFTrack)
12
13 //_____________________________________________________________________________
14 AliFTrack::AliFTrack(Int_t code, Double_t charge,
15                      Double_t pT, Double_t eta, Double_t phi,
16                      Double_t v11, Double_t v22,Double_t v33,
17                      Double_t v12, Double_t v13, Double_t v23, Int_t iFlag)
18 {
19    fIdTrack    = code;
20    fChTrack    = charge;
21    fPT         = pT;
22    fEta        = eta;
23    fPhi        = phi;
24    fV11        = v11;
25    fV22        = v22;
26    fV33        = v33;
27    fV13        = v13;
28    fV12        = v12;
29    fV23        = v23;
30    fIFlag      = iFlag;
31 }
32
33
34 //_____________________________________________________________________________
35 void AliFTrack::Draw(Option_t *)
36 {
37
38 }
39
40 //_____________________________________________________________________________
41 void AliFTrack::Paint(Option_t *)
42 {
43
44 }
45