]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MFT/AliMuonForwardTrackFinder.C
Support files added
[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);
28 finder -> SetExtrapOriginTransvError(0.05); // To be imposed if the gen. vertex is fixed in (0,0,0)
29 finder -> SetGaussianBlurZVert(5.0); // To be imposed if the gen. vertex is fixed in (0,0,0)
d4643a10 30 finder -> SetMatchingMode(matching); // 0 -> real matching 1 -> ideal matching
820b4d9e 31 finder -> SetMinResearchRadiusAtLastPlane(0.5);
32
33 while (finder->LoadNextTrack()) continue;
34
35 if (finder->GetNRealTracksAnalyzed()) finder->Terminate();
36
37}
38
39//================================================================================================================================
40