]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDRec.C
macro for PMD reconstruction
[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
6   Int_t firstEvent = 0;
7   Int_t lastEvent = 1;
8
9   AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 2, 1., 10., 1);
10   AliTracker::SetFieldMap(field,1);
11
12   AliReconstruction rec;
13   rec.SetRunReconstruction("PMD");
14   rec.SetRunVertexFinder(kFALSE);
15   rec.SetFillESD("PMD");
16   rec.SetFillTriggerESD(kFALSE);
17
18   //  rec.Run("./");
19   //  rec.Run("raw.date");
20   rec.Run("raw_6b_61.root",firstEvent,lastEvent);
21
22 }
23