]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDRec.C
remove dummy handler. Added functionality to AliDummyHandler in STEER
[u/mrichter/AliRoot.git] / PMD / AliPMDRec.C
1 void AliPMDRec()
2 {
3   // This macro for the full reconstruction chain. Only PMD is ON.
4   //
5   AliCDBManager * man = AliCDBManager::Instance();
6   man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
7   man->SetRun(0);
8
9
10   Int_t firstEvent = 0;
11   Int_t lastEvent = 1;
12
13   AliReconstruction rec;
14   rec.SetRunReconstruction("PMD");
15   rec.SetRunVertexFinder(kFALSE);
16   rec.SetFillESD("PMD");
17   rec.SetFillTriggerESD(kFALSE);
18
19   //  rec.Run("./");
20   //  rec.Run("raw.date");
21   rec.Run("raw_6b_61.root",firstEvent,lastEvent);
22
23 }
24