]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MFT/AliMuonForwardTrackFinder.C
efficiency and pt Resolution v1 (M. Verweij)
[u/mrichter/AliRoot.git] / MFT / AliMuonForwardTrackFinder.C
CommitLineData
820b4d9e 1//================================================================================================================================
2
3void AliMuonForwardTrackFinder(Int_t run=0,
d4643a10 4 Int_t matching=0,
820b4d9e 5 const Char_t *readDir= ".",
6 const Char_t *outDir = ".",
7 Int_t nEventsToAnalyze = -1) {
8
9 // TGeoGlobalMagField::Instance()->SetField(new AliMagF("Maps","Maps", -1., -1, AliMagF::k5kG));
10
d4643a10 11 // AliLog::SetClassDebugLevel("AliMuonForwardTrackFinder", 1);
12
820b4d9e 13 AliCDBManager* man = AliCDBManager::Instance();
14 man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
15 man->SetSpecificStorage("GRP/GRP/Data", Form("local://%s",gSystem->pwd()));
16
17 AliMuonForwardTrackFinder *finder = new AliMuonForwardTrackFinder();
18 finder->SetDraw(kFALSE);
19 finder->Init(run, readDir, outDir, nEventsToAnalyze);
20
21 finder -> SetSigmaSpectrometerCut(4.0);
22 finder -> SetSigmaClusterCut(4.0);
23 finder -> SetChi2GlobalCut(2.0);
24 finder -> SetRAbsorberCut(0.0);
25 // finder -> SetRAbsorberCut(26.4);
26 finder -> SetLowPtCut(0.0);
27 // finder -> SetLowPtCut(0.5);
9805ceb3 28 finder -> SetVertexError(0.015, 0.015, 0.010);
29 finder -> SetMatchingMode(matching); // 0 -> real matching 1 -> ideal matching
30 finder -> SetMinResearchRadiusAtLastPlane(0.0);
820b4d9e 31
32 while (finder->LoadNextTrack()) continue;
33
34 if (finder->GetNRealTracksAnalyzed()) finder->Terminate();
35
36}
37
38//================================================================================================================================
39