]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/FMDReconstructor.C
Removing AliMC and AliMCProcess
[u/mrichter/AliRoot.git] / FMD / FMDReconstructor.C
CommitLineData
37c55dc0 1void FMDReconstructor (Int_t evNumber=1)
2{
3 if (gClassTable->GetID("AliRun") < 0)
4 {
5 gROOT->LoadMacro("$ALICE_ROOT/macros/loadlibs.C");
6 loadlibs();
7 }
8 if (gSystem->Getenv("CONFIG_SPLIT_FILE"))
9 cout << "SPLIT" << endl;
10 else
11 cout << "NO SPLIT" << endl ;
12 TFile * f = new TFile("galice.root","UPDATE");
13 gAlice = (AliRun*) f->Get("gAlice") ;
14 AliFMD* FMD = (AliFMD *)gAlice->GetDetector("FMD");
15 gAlice->RunReco("FMD") ;
16}
17