]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/exa/runkalman.C
compilation warnings corrected
[u/mrichter/AliRoot.git] / HLT / exa / runkalman.C
CommitLineData
b2a02bce 1void 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
4aa41877 10 Bool_t isinit=AliHLTTransform::Init("./",!binary);
3e87ef69 11
4aa41877 12 AliHLTKalman *k = new AliHLTKalman(path,0,0);
3e87ef69 13 k->Init();
b2a02bce 14 //k->DoMakeSeed();
3e87ef69 15 k->LoadTracks(0,kTRUE);
b2a02bce 16 k->WriteFiles(path);
3e87ef69 17 k->ProcessTracks();
18 delete k;
19}