]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/exa/runkalman.C
Obsolete - removed
[u/mrichter/AliRoot.git] / HLT / exa / runkalman.C
1 void runkalman(Char_t *path = "/tmp/tvik")
2
3   Bool_t binary=kFALSE; //Assume input is RLE binary files, or rootfile.
4   Bool_t pileup=kFALSE; //Assume input is pileup event = non RLE binary files.
5   Int_t npatches = 1;   //Options; 1, 2 and 6.
6   Char_t trackparams[] = "SetTrackingParameters_1000bf04.C"; //Set this to correspond 
7                                                              //with mult. and BField
8   //for aliroot the path should point to a file 
9   //containing the tpc geometry called alirunfile.root
10   Bool_t isinit=AliL3Transform::Init("./",!binary);
11
12   AliL3Kalman *k = new AliL3Kalman(path,0,0);
13   k->Init();
14   //k->DoMakeSeed();
15   k->LoadTracks(0,kTRUE);
16   k->WriteFiles(path);
17   k->ProcessTracks();
18   delete k;
19 }