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