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