3 #include "TClonesArray.h"
8 #include "TGeoManager.h"
10 #include "TParticle.h"
20 #include "TIterator.h"
25 #include "AliRunLoader.h"
26 #include "AliLoader.h"
27 #include "AliHeader.h"
31 #include "AliTracker.h"
32 #include "AliGRPObject.h"
33 #include "AliCDBEntry.h"
34 #include "AliCDBManager.h"
37 #include "AliMUONConstants.h"
38 #include "AliMUONTrack.h"
39 #include "AliMUONRecoCheck.h"
40 #include "AliMUONTrackParam.h"
41 #include "AliMUONTrackExtrap.h"
42 #include "AliMUONVTrackStore.h"
43 #include "AliMUONVCluster.h"
46 #include "AliMuonForwardTrack.h"
47 #include "AliMFTCluster.h"
49 #include "AliMFTSegmentation.h"
50 #include "AliMFTConstants.h"
52 #include "AliMuonForwardTrackFinder.h"
54 //====================================================================================================================================================
56 // Class for the creation of the "global muon tracks" built from the clusters in the
57 // muon spectrometer and the clusters of the Muon Forward Tracker. QA histograms are also created
59 // Contact author: antonio.uras@cern.ch
61 //====================================================================================================================================================
63 const Double_t AliMuonForwardTrackFinder::fRadLengthSi = AliMFTConstants::fRadLengthSi;
65 ClassImp(AliMuonForwardTrackFinder)
67 //=====================================================================================================
69 AliMuonForwardTrackFinder::AliMuonForwardTrackFinder():
75 fSigmaSpectrometerCut(0),
79 fNFinalCandidatesCut(0),
84 fDistanceFromGoodClusterAndTrackAtLastPlane(-1),
85 fDistanceFromBestClusterAndTrackAtLastPlane(-1),
90 fNPlanesMFTAnalyzed(0),
91 fNMaxMissingMFTClusters(0),
96 fHistRadiusEndOfAbsorber(0),
97 fHistNGoodClustersForFinalTracks(0),
98 fHistDistanceGoodClusterFromTrackMinusDistanceBestClusterFromTrackAtLastPlane(0),
99 fHistDistanceGoodClusterFromTrackAtLastPlane(0),
101 fNtuFinalCandidates(0),
102 fNtuFinalBestCandidates(0),
107 fTxtTrackGoodClusters(0),
108 fTxtTrackFinalChi2(0),
109 fTxtTrackMomentum(0),
110 fTxtFinalCandidates(0),
113 fTxtClustGoodChi2(0),
117 fMrkClustGoodChi2(0),
121 fCountRealTracksAnalyzed(0),
122 fMaxNTracksToBeAnalyzed(99999999),
123 fCountRealTracksWithRefMC(0),
124 fCountRealTracksWithRefMC_andTrigger(0),
125 fCountRealTracksWithRefMC_andTrigger_andGoodPt(0),
126 fCountRealTracksWithRefMC_andTrigger_andGoodPt_andGoodTheta(0),
127 fCountRealTracksAnalyzedOfEvent(0),
128 fCountRealTracksAnalyzedWithFinalCandidates(0),
140 fFinalBestCandidate(0),
141 fIsCurrentMuonTrackable(0),
152 fMuonForwardTracks(0),
154 fMinResearchRadiusAtLastPlane(0),
160 // Default constructor
162 for (Int_t iPlane=0; iPlane<AliMFTConstants::fNMaxPlanes; iPlane++) {
164 fHistNTracksAfterExtrapolation[iPlane] = 0;
165 fHistChi2Cluster_GoodCluster[iPlane] = 0;
166 fHistChi2Cluster_BadCluster[iPlane] = 0;
167 fHistResearchRadius[iPlane] = 0;
169 fIsGoodClusterInPlane[iPlane] = kFALSE;
171 fHistChi2Cluster_GoodCluster[iPlane] = 0;
172 fHistChi2Cluster_BadCluster[iPlane] = 0;
174 fHistGlobalChi2AtPlaneFor_GOOD_CandidatesOfTrackableMuons[iPlane] = 0;
175 fHistGlobalChi2AtPlaneFor_BAD_CandidatesOfTrackableMuons[iPlane] = 0;
177 fZPlane[iPlane] = 0.;
178 fRPlaneMax[iPlane] = 0.;
179 fRPlaneMin[iPlane] = 0.;
181 for (Int_t i=0; i<4; i++) fGrMFTPlane[i][iPlane] = 0;
182 fCircleExt[iPlane] = 0;
183 fCircleInt[iPlane] = 0;
185 fTxtTrackChi2[iPlane] = 0;
187 fIsClusterCompatible[iPlane] = 0;
189 fMFTClusterArray[iPlane] = 0;
190 fMFTClusterArrayFront[iPlane] = new TClonesArray("AliMFTCluster");
191 fMFTClusterArrayBack[iPlane] = new TClonesArray("AliMFTCluster");
193 fIsPlaneMandatory[iPlane] = kFALSE;
199 fHistDistanceGoodClusterFromTrackMinusDistanceBestClusterFromTrackAtLastPlane = 0;
200 fHistDistanceGoodClusterFromTrackAtLastPlane = 0;
203 fCandidateTracks = 0;
205 fOutputTreeFile = new TFile("MuonGlobalTracks.root", "recreate");
206 fOutputEventTree = new TTree("AliMuonForwardTracks", "Tree of AliMuonForwardTracks");
207 fMuonForwardTracks = new TClonesArray("AliMuonForwardTrack");
208 fOutputEventTree -> Branch("tracks", &fMuonForwardTracks);
212 //=====================================================================================================
214 AliMuonForwardTrackFinder::~AliMuonForwardTrackFinder() {
216 for (Int_t iPlane=0; iPlane<AliMFTConstants::fNMaxPlanes; iPlane++) {
218 delete fHistNTracksAfterExtrapolation[iPlane];
219 delete fHistChi2Cluster_GoodCluster[iPlane];
220 delete fHistChi2Cluster_BadCluster[iPlane];
221 delete fHistResearchRadius[iPlane];
223 delete fHistChi2Cluster_GoodCluster[iPlane];
224 delete fHistChi2Cluster_BadCluster[iPlane];
226 delete fHistGlobalChi2AtPlaneFor_GOOD_CandidatesOfTrackableMuons[iPlane];
227 delete fHistGlobalChi2AtPlaneFor_BAD_CandidatesOfTrackableMuons[iPlane];
229 for (Int_t i=0; i<4; i++) delete fGrMFTPlane[i][iPlane];
230 delete fCircleExt[iPlane];
231 delete fCircleInt[iPlane];
233 delete fTxtTrackChi2[iPlane];
235 delete fMFTClusterArray[iPlane];
236 delete fMFTClusterArrayFront[iPlane];
237 delete fMFTClusterArrayBack[iPlane];
241 delete fNtuFinalCandidates;
242 delete fNtuFinalBestCandidates;
244 delete fHistRadiusEndOfAbsorber;
246 delete fHistNGoodClustersForFinalTracks;
247 delete fHistDistanceGoodClusterFromTrackMinusDistanceBestClusterFromTrackAtLastPlane; //
248 delete fHistDistanceGoodClusterFromTrackAtLastPlane; //
252 delete fTxtMuonHistory;
253 delete fTxtTrackGoodClusters;
254 delete fTxtTrackFinalChi2;
255 delete fTxtTrackMomentum;
256 delete fTxtFinalCandidates;
259 delete fTxtClustGoodChi2;
261 delete fTxtClustOfTrack;
263 delete fMrkClustGoodChi2;
265 delete fMrkClustOfTrack;
273 delete fMuonRecoCheck;
275 delete fMFTClusterTree;
277 delete fMuonTrackReco;
278 delete fCurrentTrack;
279 delete fFinalBestCandidate;
281 delete fCandidateTracks;
284 delete fTrackRefStore;
291 delete fSegmentation;
293 delete fOutputTreeFile;
294 delete fOutputQAFile;
295 delete fOutputEventTree;
297 delete fMuonForwardTracks;
304 //=====================================================================================================
306 void AliMuonForwardTrackFinder::Init(Int_t nRun,
309 Int_t nEventsToAnalyze) {
312 AliInfo("WARNING: run already initialized!!\n");
319 AliInfo(Form("input dir = %s\n", fReadDir.Data()));
320 AliInfo(Form("output dir = %s\n", fOutDir.Data()));
322 // -------------------------- initializing files...
324 AliInfo(Form("initializing files for run %d...\n", fRun));
326 Char_t geoFileName[300];
327 Char_t esdFileName[300];
328 Char_t gAliceName[300];
329 Char_t clusterName[300];
331 snprintf(geoFileName , 300, "%s/geometry.root", fReadDir.Data());
332 snprintf(esdFileName , 300, "%s/AliESDs.root" , fReadDir.Data());
333 snprintf(gAliceName , 300, "%s/galice.root" , fReadDir.Data());
334 snprintf(clusterName , 300, "%s/MFT.RecPoints.root", fReadDir.Data());
336 // Import TGeo geometry (needed by AliMUONTrackExtrap::ExtrapToVertex)
338 TGeoManager::Import(geoFileName);
340 AliError(Form("getting geometry from file %s failed", geoFileName));
345 fFileESD = new TFile(esdFileName);
346 if (!fFileESD || !fFileESD->IsOpen()) return;
347 else AliInfo(Form("file %s successfully opened\n", fFileESD->GetName()));
349 fMuonRecoCheck = new AliMUONRecoCheck(esdFileName, Form("%s/generated/", fReadDir.Data())); // Utility class to check reconstruction
350 fFile_gAlice = new TFile(gAliceName);
351 if (!fFile_gAlice || !fFile_gAlice->IsOpen()) return;
352 else AliInfo(Form("file %s successfully opened\n", fFile_gAlice->GetName()));
354 fRunLoader = AliRunLoader::Open(gAliceName);
355 gAlice = fRunLoader->GetAliRun();
356 if (!gAlice) fRunLoader->LoadgAlice();
357 fMFT = (AliMFT*) gAlice->GetDetector("MFT");
358 fSegmentation = fMFT->GetSegmentation();
359 SetNPlanesMFT(fSegmentation->GetNPlanes());
361 if (!SetRunNumber()) return;
362 if (!InitGRP()) return;
363 AliMUONTrackExtrap::SetField(); // set the magnetic field for track extrapolations
365 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
366 fZPlane[iPlane] = fSegmentation->GetPlane(iPlane)->GetZCenter();
367 fRPlaneMax[iPlane] = fSegmentation->GetPlane(iPlane)->GetRMaxSupport();
368 fRPlaneMin[iPlane] = fSegmentation->GetPlane(iPlane)->GetRMinSupport();
371 // Loading MFT clusters
372 fMFTLoader = fRunLoader->GetDetectorLoader("MFT");
373 fMFTLoader->LoadRecPoints("READ");
375 fMFTClusterTree = fMFTLoader->TreeR();
377 Int_t nEventsInFile = fMuonRecoCheck->NumberOfEvents();
378 if (!nEventsInFile) {
379 AliError("no events available!!!\n");
382 if (nEventsInFile<nEventsToAnalyze || nEventsToAnalyze<0) fNEventsToAnalyze = nEventsInFile;
383 else fNEventsToAnalyze = nEventsToAnalyze;
385 fCandidateTracks = new TClonesArray("AliMuonForwardTrack",50000);
387 // -------------------------- initializing histograms...
389 AliInfo("\ninitializing histograms...\n");
392 AliInfo("... done!\n\n");
394 // -------------------------- initializing graphics...
396 AliInfo("initializing graphics...\n");
398 AliInfo("... done!\n\n");
400 SetSigmaSpectrometerCut(4.0);
401 SetSigmaClusterCut(4.5);
402 SetChi2GlobalCut(2.0);
403 SetNFinalCandidatesCut(10);
404 SetRAbsorberCut(26.4);
409 //======================================================================================================================================
411 Bool_t AliMuonForwardTrackFinder::LoadNextEvent() {
413 // load next reconstructed event from the tree
415 if (fEv) FillOutputTree();
417 if (fEv>=fNEventsToAnalyze) return kFALSE;
419 fCountRealTracksAnalyzedOfEvent = 0;
421 AliInfo(Form(" **** analyzing event # %d \n", fEv));
423 fTrackStore = fMuonRecoCheck->ReconstructedTracks(fEv);
424 fTrackRefStore = fMuonRecoCheck->ReconstructibleTracks(fEv);
426 fRunLoader->GetEvent(fEv);
427 if (!fMFTLoader->TreeR()->GetEvent()) return kFALSE;
428 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
429 AliDebug(1, Form("plane %02d: nClusters = %d\n", iPlane, (fMFT->GetRecPointsList(iPlane))->GetEntries()));
430 fMFTClusterArray[iPlane] = fMFT->GetRecPointsList(iPlane);
432 SeparateFrontBackClusters();
434 fRunLoader -> LoadKinematics();
435 fStack = fRunLoader->Stack();
436 fNextTrack = fTrackStore->CreateIterator();
437 fMuonForwardTracks->Clear();
445 //======================================================================================================================================
447 Int_t AliMuonForwardTrackFinder::LoadNextTrack() {
449 fNPlanesMFTAnalyzed = 0;
451 // load next muon track from the reconstructed event
453 if (fCountRealTracksAnalyzed>fMaxNTracksToBeAnalyzed) return kFALSE;
455 if (!fCountRealTracksAnalyzed) if (!LoadNextEvent()) return kFALSE;
456 if (fCountRealTracksAnalyzed==fMaxNTracksToBeAnalyzed) {
457 fCountRealTracksAnalyzed++;
458 if (!LoadNextEvent()) return kFALSE;
461 while ( !(fMuonTrackReco = static_cast<AliMUONTrack*>(fNextTrack->Next())) ) if (!LoadNextEvent()) return kFALSE;
463 AliDebug(1, "**************************************************************************************\n");
464 AliDebug(1, Form("*************************** MUON TRACK %3d ***************************************\n", fCountRealTracksAnalyzedOfEvent));
465 AliDebug(1, "**************************************************************************************\n");
467 fCountRealTracksAnalyzed++;
469 fCandidateTracks -> Clear();
472 fDistanceFromGoodClusterAndTrackAtLastPlane = -1.;
473 fDistanceFromBestClusterAndTrackAtLastPlane = -1.;
476 TIter nextTrackRef(fTrackRefStore->CreateIterator());
477 AliMUONTrack *trackRef=0;
479 // --------------------------------------- loop on MC generated tracks to find the MC reference...
481 while ( (trackRef = static_cast<AliMUONTrack*>(nextTrackRef())) ) {
482 // number of compatible clusters between trackReco and trackRef
483 Int_t nMatchCluster = fMuonTrackReco->FindCompatibleClusters(*trackRef, fSigmaSpectrometerCut, fIsClusterCompatible);
484 if ( (fIsClusterCompatible[0] || fIsClusterCompatible[1] || fIsClusterCompatible[2] || fIsClusterCompatible[3]) && // before the dipole
485 (fIsClusterCompatible[6] || fIsClusterCompatible[7] || fIsClusterCompatible[8] || fIsClusterCompatible[9]) && // after the dipole
486 2*nMatchCluster>fMuonTrackReco->GetNClusters() ) {
487 fMuonTrackReco->SetMCLabel(trackRef->GetUniqueID()); // MC reference has been found for trackReco!
492 // ------------------------------------- ...done!
494 fLabelMC = fMuonTrackReco->GetMCLabel();
498 fCountRealTracksWithRefMC++;
499 if (fStack->Particle(fLabelMC)->GetFirstMother() != -1) {
500 motherPdg = fStack->Particle(fStack->Particle(fLabelMC)->GetFirstMother())->GetPdgCode();
504 CheckCurrentMuonTrackable();
506 if (fMuonTrackReco->GetMatchTrigger()) fCountRealTracksWithRefMC_andTrigger++;
508 // the track we are going to build, starting from fMuonTrackReco and adding the MFT clusters
509 AliMuonForwardTrack *track = new ((*fCandidateTracks)[0]) AliMuonForwardTrack();
510 track -> SetMUONTrack(fMuonTrackReco);
511 if (fLabelMC>=0 && fStack->Particle(fLabelMC)) track->SetMCTrackRef(fStack->Particle(fLabelMC));
512 track -> SetMCLabel(fMuonTrackReco->GetMCLabel());
513 track -> SetMatchTrigger(fMuonTrackReco->GetMatchTrigger());
516 Double_t xVtx=-999., yVtx=-999., zVtx=-999999.;
517 if (track->GetMCTrackRef()) {
518 xVtx = track->GetMCTrackRef()->Vx();
519 yVtx = track->GetMCTrackRef()->Vy();
520 zVtx = track->GetMCTrackRef()->Vz();
524 Double_t pt=-999., theta=-999., eta=-999.;
525 if (track->GetMCTrackRef()) {
526 pt = track->GetMCTrackRef()->Pt();
527 theta = track->GetMCTrackRef()->Theta();
528 if (theta<0.) theta += TMath::Pi();
529 eta = track->GetMCTrackRef()->Eta();
532 AliMUONTrackParam *param = (AliMUONTrackParam*) (fMuonTrackReco->GetTrackParamAtCluster()->First());
533 pt = TMath::Sqrt(param->Px()*param->Px() + param->Py()*param->Py());
534 theta = TMath::ATan(pt/param->Pz());
535 if (theta<0.) theta += TMath::Pi();
536 eta = -1.*TMath::Log(TMath::Tan(0.5*theta));
538 // if the transverse momentum is smaller than the threshold, skip to the next track
539 if (pt < fLowPtCut) return 3;
541 // track parameters linearly extrapolated from the first tracking station to the end of the absorber
542 AliMUONTrackParam trackParamEndOfAbsorber(*((AliMUONTrackParam*)(fMuonTrackReco->GetTrackParamAtCluster()->First())));
543 AliMUONTrackExtrap::ExtrapToZCov(&trackParamEndOfAbsorber, -503.); // absorber extends from -90 to -503 cm
544 Double_t xEndOfAbsorber = trackParamEndOfAbsorber.GetNonBendingCoor();
545 Double_t yEndOfAbsorber = trackParamEndOfAbsorber.GetBendingCoor();
546 Double_t rAbsorber = TMath::Sqrt(xEndOfAbsorber*xEndOfAbsorber + yEndOfAbsorber*yEndOfAbsorber);
547 fHistRadiusEndOfAbsorber -> Fill(rAbsorber);
549 // if the radial distance of the track at the end of the absorber is smaller than a given radius, skip to the next track
550 if (rAbsorber < fRAbsorberCut) return 4;
552 //------------------------- NOW THE CYCLE OVER THE MFT PLANES STARTS ---------------------------------------
554 for (Int_t iPlane=fNPlanesMFT-1; iPlane>=0; iPlane--) { // *** do not reverse the order of this cycle!!!
555 // *** this reflects the fact that the extrapolation is performed
556 // *** starting from the last MFT plane back to the origin
558 // --------- updating the array of tracks according to the clusters available in the i-th plane ---------
560 fNPlanesMFTAnalyzed++;
562 if (fMatchingMode==kRealMatching) {
563 Int_t nTracksToBeAnalyzed = fCandidateTracks->GetEntriesFast();
564 for (Int_t iTrack=0; iTrack<nTracksToBeAnalyzed; iTrack++) {
565 fCurrentTrack = (AliMuonForwardTrack*) fCandidateTracks->UncheckedAt(iTrack);
566 // if the old track is compatible with the new cluster, the track is updated and inserted as new track in the array
567 // (several new tracks can be created for one old track)
568 FindClusterInPlane(iPlane);
569 if ((fNPlanesMFTAnalyzed-fCurrentTrack->GetNMFTClusters())>fNMaxMissingMFTClusters || fIsPlaneMandatory[iPlane]) {
570 fCandidateTracks->Remove(fCurrentTrack); // the old track is removed after the check;
573 fCandidateTracks->Compress();
574 if (fIsCurrentMuonTrackable) {
575 // fOutputQAFile->cd();
576 fHistNTracksAfterExtrapolation[iPlane] -> Fill(fCandidateTracks->GetEntriesFast());
580 else if (fMatchingMode==kIdealMatching && fIsCurrentMuonTrackable) {
581 fCurrentTrack = (AliMuonForwardTrack*) fCandidateTracks->UncheckedAt(0);
582 AliDebug(2, Form("plane %02d: fCandidateTracks->GetEntriesFast() = %d fCandidateTracks->UncheckedAt(0) = %p fCurrentTrack = %p\n",
583 iPlane, fCandidateTracks->GetEntriesFast(), fCandidateTracks->UncheckedAt(0), fCurrentTrack));
584 AttachGoodClusterInPlane(iPlane);
589 // -------------------------- END OF THE CYCLE OVER THE MFT PLANES --------------------------------------------
591 AliDebug(1, "Finished cycle over planes");
593 Double_t momentum = pt * TMath::CosH(eta);
594 fTxtTrackMomentum = new TLatex(0.10, 0.70, Form("P_{spectro} = %3.1f GeV/c", momentum));
596 if (fMatchingMode==kIdealMatching) {
597 AliDebug(1, "Adding track to output tree...\n");
598 fFinalBestCandidate = (AliMuonForwardTrack*) fCandidateTracks->UncheckedAt(0);
599 AliMuonForwardTrack *newTrack = (AliMuonForwardTrack*) fCandidateTracks->UncheckedAt(0);
600 new ((*fMuonForwardTracks)[fMuonForwardTracks->GetEntries()]) AliMuonForwardTrack(*newTrack);
601 AliDebug(1, "...track added!\n");
602 fCandidateTracks->Clear();
603 fCountRealTracksAnalyzedOfEvent++;
604 fCountRealTracksAnalyzedWithFinalCandidates++;
605 PrintParticleHistory();
606 FillPlanesWithTrackHistory();
608 Double_t chi2AtPlane[fNMaxPlanes] = {0};
609 Int_t nGoodClusters = 0;
610 Int_t nMFTClusters = fFinalBestCandidate->GetNMFTClusters();
611 // Int_t nMUONClusters = fFinalBestCandidate->GetNMUONClusters();
613 for (Int_t iCluster=0; iCluster<nMFTClusters; iCluster++) {
614 while (!fFinalBestCandidate->PlaneExists(plane)) plane++;
615 AliMFTCluster *localCluster = fFinalBestCandidate->GetMFTCluster(iCluster);
616 chi2AtPlane[plane] = localCluster->GetLocalChi2();
617 if (IsCorrectMatch(localCluster)) nGoodClusters++;
618 // Int_t nClustersGlobalTrack = nMUONClusters + (nMFTClusters-iCluster); // Muon Spectrometer clusters + clusters in the Vertex Telescope
619 // Int_t ndfGlobalTrack = GetNDF(nClustersGlobalTrack);
620 // chi2AtPlane[plane] /= Double_t(ndfGlobalTrack);
623 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
624 fTxtTrackChi2[iPlane] = new TLatex(0.55*fRPlaneMax[fNPlanesMFT-1],
625 0.90*fRPlaneMax[fNPlanesMFT-1],
626 Form("#chi^{2} = %3.1f", chi2AtPlane[iPlane]));
628 fTxtTrackFinalChi2 = new TLatex(0.20, 0.44, Form("#chi^{2}_{final} = %3.1f", chi2AtPlane[0]));
630 if (fDrawOption) DrawPlanes();
634 // If we have several final tracks, we must find the best candidate:
636 Int_t nFinalTracks = fCandidateTracks->GetEntriesFast();
637 AliDebug(1, Form("nFinalTracks = %d", nFinalTracks));
639 if (nFinalTracks) fCountRealTracksAnalyzedWithFinalCandidates++;
641 Double_t theVariable_Best = -1.; // variable defining the best candidate
642 Bool_t bestCandidateExists = kFALSE;
643 Int_t nGoodClustersBestCandidate = 0;
644 Int_t idBestCandidate = 0;
645 Double_t chi2HistoryForBestCandidate[fNMaxPlanes] = {0}; // chi2 on each plane, for the best candidate
646 Double_t nClustersPerPlane[fNMaxPlanes] = {0};
647 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
648 chi2HistoryForBestCandidate[iPlane] = -1.;
649 nClustersPerPlane[iPlane] = fMFTClusterArray[iPlane] -> GetEntries();
652 fTxtFinalCandidates = new TLatex(0.10, 0.78, Form("N_{FinalCandidates} = %d", nFinalTracks));
654 Int_t nClustersMC = 0;
655 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) nClustersMC += fIsGoodClusterInPlane[iPlane];
657 for (Int_t iTrack=0; iTrack<nFinalTracks; iTrack++) {
659 AliMuonForwardTrack *finalTrack = (AliMuonForwardTrack*) fCandidateTracks->UncheckedAt(iTrack);
661 Double_t chi2AtPlane[fNMaxPlanes] = {0};
662 Int_t nGoodClusters = 0;
663 Int_t nMFTClusters = finalTrack->GetNMFTClusters();
664 // Int_t nMUONClusters = finalTrack->GetNMUONClusters();
667 for (Int_t iCluster=0; iCluster<nMFTClusters; iCluster++) {
668 while (!finalTrack->PlaneExists(plane)) plane++;
669 AliMFTCluster *localCluster = finalTrack->GetMFTCluster(iCluster);
670 chi2AtPlane[plane] = localCluster->GetLocalChi2();
671 if (IsCorrectMatch(localCluster)) nGoodClusters++;
672 // Int_t nClustersGlobalTrack = nMUONClusters + (nMFTClusters-iCluster); // Muon Spectrometer clusters + clusters in the Vertex Telescope
673 // Int_t ndfGlobalTrack = GetNDF(nClustersGlobalTrack);
674 // chi2AtPlane[plane] /= Double_t(ndfGlobalTrack);
678 if (fIsCurrentMuonTrackable) {
679 // fOutputQAFile->cd();
680 fHistNGoodClustersForFinalTracks -> Fill(nGoodClusters);
683 // fOutputQAFile->cd();
685 Float_t finalCandidatesInfo[] = {Double_t(fRun),
687 Double_t(fCountRealTracksAnalyzedOfEvent),
688 Double_t(nFinalTracks),
689 Double_t(fLabelMC>=0),
692 Double_t(fMuonTrackReco->GetMatchTrigger()),
693 Double_t(nClustersMC),
694 Double_t(nGoodClusters),
706 fNtuFinalCandidates -> Fill(finalCandidatesInfo);
708 // now comparing the tracks with various criteria, in order to find the best one
710 Double_t theVariable = 0.;
711 // theVariable = chi2AtPlane[0];
712 for (Int_t iCluster=0; iCluster<nMFTClusters; iCluster++) theVariable += chi2AtPlane[iCluster];
713 theVariable /= Double_t(nMFTClusters);
716 if (theVariable<theVariable_Best || theVariable_Best<0.) {
717 nGoodClustersBestCandidate = nGoodClusters;
718 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) chi2HistoryForBestCandidate[iPlane] = chi2AtPlane[iPlane];
719 theVariable_Best = theVariable;
720 fTxtTrackFinalChi2 = new TLatex(0.20, 0.44, Form("#chi^{2}_{final} = %3.1f", chi2HistoryForBestCandidate[0]));
721 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
722 fTxtTrackChi2[iPlane] = new TLatex(0.55*fRPlaneMax[fNPlanesMFT-1],
723 0.90*fRPlaneMax[fNPlanesMFT-1],
724 Form("#chi^{2} = %3.1f", chi2AtPlane[iPlane]));
726 idBestCandidate = iTrack;
727 bestCandidateExists=kTRUE;
730 // ----------------------------------------------------------
735 fFinalBestCandidate = (AliMuonForwardTrack*) fCandidateTracks->UncheckedAt(idBestCandidate);
736 AliInfo(Form("fFinalBestCandidate->GetNMFTClusters() = %d\n", fFinalBestCandidate->GetNMFTClusters()));
737 PrintParticleHistory();
738 FillPlanesWithTrackHistory();
739 AliMuonForwardTrack *newTrack = (AliMuonForwardTrack*) fCandidateTracks->UncheckedAt(idBestCandidate);
740 newTrack -> SetNWrongClustersMC(newTrack->GetNMFTClusters() - nGoodClustersBestCandidate);
741 new ((*fMuonForwardTracks)[fMuonForwardTracks->GetEntries()]) AliMuonForwardTrack(*newTrack);
744 // fOutputQAFile->cd();
746 Float_t finalBestCandidatesInfo[] = {Double_t(fRun),
748 Double_t(fCountRealTracksAnalyzedOfEvent),
749 Double_t(nFinalTracks),
750 Double_t(fLabelMC>=0),
753 Double_t(fMuonTrackReco->GetMatchTrigger()),
754 Double_t(nClustersMC),
755 Double_t(nGoodClustersBestCandidate),
757 chi2HistoryForBestCandidate[0],
758 chi2HistoryForBestCandidate[1],
759 chi2HistoryForBestCandidate[2],
760 chi2HistoryForBestCandidate[3],
761 chi2HistoryForBestCandidate[4],
762 chi2HistoryForBestCandidate[5],
763 chi2HistoryForBestCandidate[6],
764 chi2HistoryForBestCandidate[7],
765 chi2HistoryForBestCandidate[8],
766 nClustersPerPlane[0],
767 nClustersPerPlane[1],
768 nClustersPerPlane[2],
769 nClustersPerPlane[3],
770 nClustersPerPlane[4],
771 nClustersPerPlane[5],
772 nClustersPerPlane[6],
773 nClustersPerPlane[7],
774 nClustersPerPlane[8]};
776 fNtuFinalBestCandidates -> Fill(finalBestCandidatesInfo);
778 if (fDrawOption && bestCandidateExists) {
779 fTxtTrackGoodClusters = new TLatex(0.20, 0.51, Form("N_{GoodClusters} = %d", nGoodClustersBestCandidate));
783 // -------------------------------------------------------------------------------------------
785 fCandidateTracks->Clear();
786 fFinalBestCandidate = NULL;
788 fCountRealTracksAnalyzedOfEvent++;
794 //===========================================================================================================================================
796 void AliMuonForwardTrackFinder::FindClusterInPlane(Int_t planeId) {
798 AliDebug(2, Form(">>>> executing AliMuonForwardTrackFinder::FindClusterInPlane(%d)\n", planeId));
800 // !!!!!!!!! coordinates and errors on the interaction vertex should be taken from the event itself (ITS) if available
802 // propagate track to plane #planeId (both to front and back active sensors)
803 // look for compatible clusters
804 // update TrackParam at found cluster (if any) using Kalman Filter
806 AliMUONTrackParam currentParamFront, currentParamBack, currentParamForResearchFront, currentParamForResearchBack;
808 if (planeId == fNPlanesMFT-1) { // last plane of the telecope
809 currentParamFront = (*((AliMUONTrackParam*)(fMuonTrackReco->GetTrackParamAtCluster()->First())));
810 currentParamBack = (*((AliMUONTrackParam*)(fMuonTrackReco->GetTrackParamAtCluster()->First())));
811 currentParamForResearchFront = currentParamFront;
812 currentParamForResearchBack = currentParamBack;
813 Double_t xExtrap = gRandom->Gaus(0,fVertexErrorX);
814 Double_t yExtrap = gRandom->Gaus(0,fVertexErrorY);
815 Double_t zExtrap = gRandom->Gaus(0,fVertexErrorZ);
816 AliMUONTrackExtrap::ExtrapToVertex(¤tParamFront, xExtrap, yExtrap, zExtrap, fVertexErrorX, fVertexErrorY);
817 AliMUONTrackExtrap::ExtrapToVertex(¤tParamBack, xExtrap, yExtrap, zExtrap, fVertexErrorX, fVertexErrorY);
818 AliMUONTrackExtrap::ExtrapToVertex(¤tParamForResearchFront, xExtrap, yExtrap, zExtrap, fVertexErrorX, fVertexErrorY);
819 AliMUONTrackExtrap::ExtrapToVertex(¤tParamForResearchBack, xExtrap, yExtrap, zExtrap, fVertexErrorX, fVertexErrorY);
821 else { // MFT planes others than the last one: mult. scattering correction because of the upstream MFT planes is performed
822 currentParamFront = (*((AliMUONTrackParam*)(fCurrentTrack->GetTrackParamAtCluster()->First())));
823 currentParamBack = (*((AliMUONTrackParam*)(fCurrentTrack->GetTrackParamAtCluster()->First())));
824 currentParamForResearchFront = currentParamFront;
825 currentParamForResearchBack = currentParamBack;
826 AliMUONTrackExtrap::AddMCSEffect(¤tParamFront, (fSegmentation->GetPlane(planeId+1)->GetEquivalentSilicon()+
827 fSegmentation->GetPlane(planeId)->GetEquivalentSiliconBeforeFront())/fRadLengthSi,-1.);
828 AliMUONTrackExtrap::AddMCSEffect(¤tParamForResearchFront,(fSegmentation->GetPlane(planeId+1)->GetEquivalentSilicon()+
829 fSegmentation->GetPlane(planeId)->GetEquivalentSiliconBeforeFront())/fRadLengthSi,-1.);
830 AliMUONTrackExtrap::AddMCSEffect(¤tParamBack, (fSegmentation->GetPlane(planeId+1)->GetEquivalentSilicon()+
831 fSegmentation->GetPlane(planeId)->GetEquivalentSiliconBeforeBack())/fRadLengthSi,-1.);
832 AliMUONTrackExtrap::AddMCSEffect(¤tParamForResearchBack, (fSegmentation->GetPlane(planeId+1)->GetEquivalentSilicon()+
833 fSegmentation->GetPlane(planeId)->GetEquivalentSiliconBeforeBack())/fRadLengthSi,-1.);
835 // for all planes: extrapolation to the Z of the plane
836 AliMUONTrackExtrap::ExtrapToZCov(¤tParamFront, -1.*fSegmentation->GetPlane(planeId)->GetZCenterActiveFront());
837 AliMUONTrackExtrap::ExtrapToZCov(¤tParamForResearchFront, -1.*fSegmentation->GetPlane(planeId)->GetZCenterActiveFront());
838 AliMUONTrackExtrap::ExtrapToZCov(¤tParamBack, -1.*fSegmentation->GetPlane(planeId)->GetZCenterActiveBack());
839 AliMUONTrackExtrap::ExtrapToZCov(¤tParamForResearchBack, -1.*fSegmentation->GetPlane(planeId)->GetZCenterActiveBack());
841 //---------------------------------------------------------------------------------------
843 TMatrixD covFront(5,5); covFront = currentParamForResearchFront.GetCovariances();
844 TMatrixD covBack(5,5); covBack = currentParamForResearchBack.GetCovariances();
846 Double_t squaredError_X_Front = covFront(0,0);
847 Double_t squaredError_Y_Front = covFront(2,2);
848 Double_t squaredError_X_Back = covBack(0,0);
849 Double_t squaredError_Y_Back = covBack(2,2);
851 Double_t corrFact = 1.0;
853 Double_t researchRadiusFront = TMath::Sqrt(squaredError_X_Front + squaredError_Y_Front);
854 Double_t researchRadiusBack = TMath::Sqrt(squaredError_X_Back + squaredError_Y_Back);
855 if (planeId==fNPlanesMFT-1 && 0.5*(researchRadiusFront+researchRadiusBack)<fMinResearchRadiusAtLastPlane) {
856 corrFact = fMinResearchRadiusAtLastPlane/(0.5*(researchRadiusFront+researchRadiusBack));
858 if (fIsCurrentMuonTrackable) {
859 // fOutputQAFile->cd();
860 fHistResearchRadius[planeId] -> Fill(0.5*(researchRadiusFront+researchRadiusBack));
863 Double_t position_X_Front = currentParamForResearchFront.GetNonBendingCoor();
864 Double_t position_Y_Front = currentParamForResearchFront.GetBendingCoor();
865 Double_t position_X_Back = currentParamForResearchBack.GetNonBendingCoor();
866 Double_t position_Y_Back = currentParamForResearchBack.GetBendingCoor();
867 Double_t radialPositionOfTrackFront = TMath::Sqrt(position_X_Front*position_X_Front + position_Y_Front*position_Y_Front);
868 Double_t radialPositionOfTrackBack = TMath::Sqrt(position_X_Back*position_X_Back + position_Y_Back*position_Y_Back);
870 //---------------------------------------------------------------------------------------
872 Double_t chi2cut = 2.*fSigmaClusterCut*fSigmaClusterCut; // depends on the number of variables (here, 2)
874 // Analyizing the clusters: FRONT ACTIVE ELEMENTS
876 Int_t nClustersFront = fMFTClusterArrayFront[planeId]->GetEntries();
877 AliDebug(2, Form("There are %3d clusters in plane %02d FRONT\n", nClustersFront, planeId));
879 for (Int_t iCluster=0; iCluster<nClustersFront; iCluster++) {
881 Bool_t isGoodChi2 = kFALSE;
883 AliMFTCluster *cluster = (AliMFTCluster*) fMFTClusterArrayFront[planeId]->At(iCluster);
884 Double_t chi2 = (1./(corrFact*corrFact)) * TryOneCluster(currentParamForResearchFront, cluster); // describes the compatibility between the track and the cluster
885 if (chi2<chi2cut) isGoodChi2 = kTRUE;
887 Double_t radialPositionOfClusterFront = TMath::Sqrt(cluster->GetX()*cluster->GetX() + cluster->GetY()*cluster->GetY());
888 if (planeId == fNPlanesMFT-1) {
889 if (TMath::Abs(radialPositionOfTrackFront-radialPositionOfClusterFront)<fDistanceFromBestClusterAndTrackAtLastPlane ||
890 fDistanceFromBestClusterAndTrackAtLastPlane<0.) {
891 fDistanceFromBestClusterAndTrackAtLastPlane = TMath::Abs(radialPositionOfTrackFront-radialPositionOfClusterFront);
893 if (IsCorrectMatch(cluster)) {
894 fDistanceFromGoodClusterAndTrackAtLastPlane = TMath::Abs(radialPositionOfTrackFront-radialPositionOfClusterFront);
898 if (fIsCurrentMuonTrackable) {
899 // fOutputQAFile->cd();
900 if (IsCorrectMatch(cluster)) fHistChi2Cluster_GoodCluster[planeId]->Fill(chi2/2.); // chi2/ndf
901 else fHistChi2Cluster_BadCluster[planeId] ->Fill(chi2/2.); // chi2/ndf
905 AliDebug(3, Form("accepting cluster: chi2=%f (cut = %f)\n", chi2, chi2cut));
906 AliMuonForwardTrack *newTrack = new ((*fCandidateTracks)[fCandidateTracks->GetEntriesFast()]) AliMuonForwardTrack(*fCurrentTrack);
907 newTrack->AddTrackParamAtMFTCluster(currentParamFront, *cluster); // creating new track param and attaching the cluster
908 AliDebug(1, Form("After plane %02d: newTrack->GetNMFTClusters() = %d (fCurrentTrack->GetNMFTClusters() = %d)",
909 planeId, newTrack->GetNMFTClusters(), fCurrentTrack->GetNMFTClusters()));
910 newTrack->SetPlaneExists(planeId);
911 AliDebug(2, Form("current muon is trackable: %d\n", fIsCurrentMuonTrackable));
912 if (fIsCurrentMuonTrackable) {
913 Double_t newGlobalChi2 = ((AliMUONTrackParam*) newTrack->GetTrackParamAtCluster()->First())->GetTrackChi2();
914 AliDebug(2, Form("new chi2 = %f (= %f)\n", newGlobalChi2, newTrack->GetMFTCluster(0)->GetTrackChi2()));
915 Int_t nClustersGlobalTrack = newTrack->GetNMUONClusters() + newTrack->GetNMFTClusters(); // Muon Spectrometer clusters + clusters in the Vertex Telescope
916 Int_t ndfGlobalTrack = GetNDF(nClustersGlobalTrack);
917 // fOutputQAFile->cd();
918 if (IsCorrectMatch(cluster)) fHistGlobalChi2AtPlaneFor_GOOD_CandidatesOfTrackableMuons[planeId]->Fill(newGlobalChi2/Double_t(ndfGlobalTrack));
919 else fHistGlobalChi2AtPlaneFor_BAD_CandidatesOfTrackableMuons[planeId] ->Fill(newGlobalChi2/Double_t(ndfGlobalTrack));
921 fGrMFTPlane[kClustersGoodChi2][planeId] -> SetPoint(fGrMFTPlane[kClustersGoodChi2][planeId]->GetN(), cluster->GetX(), cluster->GetY());
923 else AliDebug(3, Form("discarding cluster: chi2=%f (cut = %f)\n", chi2, chi2cut));
927 // Analyizing the clusters: BACK ACTIVE ELEMENTS
929 Int_t nClustersBack = fMFTClusterArrayBack[planeId]->GetEntries();
930 AliDebug(2, Form("There are %3d clusters in plane %02d BACK\n", nClustersBack, planeId));
932 for (Int_t iCluster=0; iCluster<nClustersBack; iCluster++) {
934 Bool_t isGoodChi2 = kFALSE;
936 AliMFTCluster *cluster = (AliMFTCluster*) fMFTClusterArrayBack[planeId]->At(iCluster);
937 Double_t chi2 = (1./(corrFact*corrFact)) * TryOneCluster(currentParamForResearchBack, cluster); // describes the compatibility between the track and the cluster
938 if (chi2<chi2cut) isGoodChi2 = kTRUE;
940 Double_t radialPositionOfClusterBack = TMath::Sqrt(cluster->GetX()*cluster->GetX() + cluster->GetY()*cluster->GetY());
941 if (planeId == fNPlanesMFT-1) {
942 if (TMath::Abs(radialPositionOfTrackBack-radialPositionOfClusterBack)<fDistanceFromBestClusterAndTrackAtLastPlane ||
943 fDistanceFromBestClusterAndTrackAtLastPlane<0.) {
944 fDistanceFromBestClusterAndTrackAtLastPlane = TMath::Abs(radialPositionOfTrackBack-radialPositionOfClusterBack);
946 if (IsCorrectMatch(cluster)) {
947 fDistanceFromGoodClusterAndTrackAtLastPlane = TMath::Abs(radialPositionOfTrackBack-radialPositionOfClusterBack);
951 if (fIsCurrentMuonTrackable) {
952 // fOutputQAFile->cd();
953 if (IsCorrectMatch(cluster)) fHistChi2Cluster_GoodCluster[planeId]->Fill(chi2/2.); // chi2/ndf
954 else fHistChi2Cluster_BadCluster[planeId] ->Fill(chi2/2.); // chi2/ndf
958 AliDebug(3,Form("accepting cluster: chi2=%f (cut = %f)\n", chi2, chi2cut));
959 AliMuonForwardTrack *newTrack = new ((*fCandidateTracks)[fCandidateTracks->GetEntriesFast()]) AliMuonForwardTrack(*fCurrentTrack);
960 newTrack->AddTrackParamAtMFTCluster(currentParamBack, *cluster); // creating new track param and attaching the cluster
961 AliDebug(1, Form("After plane %02d: newTrack->GetNMFTClusters() = %d (fCurrentTrack->GetNMFTClusters() = %d)",
962 planeId, newTrack->GetNMFTClusters(), fCurrentTrack->GetNMFTClusters()));
963 newTrack->SetPlaneExists(planeId);
964 AliDebug(2, Form("current muon is trackable: %d\n", fIsCurrentMuonTrackable));
965 if (fIsCurrentMuonTrackable) {
966 Double_t newGlobalChi2 = ((AliMUONTrackParam*) newTrack->GetTrackParamAtCluster()->First())->GetTrackChi2();
967 AliDebug(2, Form("new chi2 = %f (= %f)\n", newGlobalChi2, newTrack->GetMFTCluster(0)->GetTrackChi2()));
968 Int_t nClustersGlobalTrack = newTrack->GetNMUONClusters() + newTrack->GetNMFTClusters(); // Muon Spectrometer clusters + clusters in the Vertex Telescope
969 Int_t ndfGlobalTrack = GetNDF(nClustersGlobalTrack);
970 // fOutputQAFile->cd();
971 if (IsCorrectMatch(cluster)) fHistGlobalChi2AtPlaneFor_GOOD_CandidatesOfTrackableMuons[planeId]->Fill(newGlobalChi2/Double_t(ndfGlobalTrack));
972 else fHistGlobalChi2AtPlaneFor_BAD_CandidatesOfTrackableMuons[planeId] ->Fill(newGlobalChi2/Double_t(ndfGlobalTrack));
974 fGrMFTPlane[kClustersGoodChi2][planeId] -> SetPoint(fGrMFTPlane[kClustersGoodChi2][planeId]->GetN(), cluster->GetX(), cluster->GetY());
976 else AliDebug(3,Form("discarding cluster: chi2=%f (cut = %f)\n", chi2, chi2cut));
980 //---------------------------------------------------------------------------------------------
982 if (planeId == fNPlanesMFT-1) {
983 if (fIsCurrentMuonTrackable && fDistanceFromGoodClusterAndTrackAtLastPlane>0.) {
984 // fOutputQAFile->cd();
985 fHistDistanceGoodClusterFromTrackMinusDistanceBestClusterFromTrackAtLastPlane -> Fill(TMath::Abs(fDistanceFromBestClusterAndTrackAtLastPlane-
986 fDistanceFromGoodClusterAndTrackAtLastPlane));
987 fHistDistanceGoodClusterFromTrackAtLastPlane -> Fill(fDistanceFromGoodClusterAndTrackAtLastPlane);
993 //==========================================================================================================================================
995 void AliMuonForwardTrackFinder::AttachGoodClusterInPlane(Int_t planeId) {
997 AliDebug(1, Form(">>>> executing AliMuonForwardTrackFinder::AttachGoodClusterInPlane(%d)\n", planeId));
999 AliMUONTrackParam currentParamFront, currentParamBack;
1001 if (planeId == fNPlanesMFT-1) { // last plane of the telecope
1002 currentParamFront = (*((AliMUONTrackParam*)(fMuonTrackReco->GetTrackParamAtCluster()->First())));
1003 currentParamBack = (*((AliMUONTrackParam*)(fMuonTrackReco->GetTrackParamAtCluster()->First())));
1004 AliMUONTrackExtrap::ExtrapToVertexWithoutBranson(¤tParamFront, 0.);
1005 AliMUONTrackExtrap::ExtrapToVertexWithoutBranson(¤tParamBack, 0.);
1007 else { // MFT planes others than the last one: mult. scattering correction because of the upstream MFT planes is performed
1008 AliDebug(2, Form("fCurrentTrack = %p\n", fCurrentTrack));
1009 currentParamFront = (*((AliMUONTrackParam*)(fCurrentTrack->GetTrackParamAtCluster()->First())));
1010 currentParamBack = (*((AliMUONTrackParam*)(fCurrentTrack->GetTrackParamAtCluster()->First())));
1011 AliMUONTrackExtrap::AddMCSEffect(¤tParamFront, (fSegmentation->GetPlane(planeId+1)->GetEquivalentSilicon()+
1012 fSegmentation->GetPlane(planeId)->GetEquivalentSiliconBeforeFront())/fRadLengthSi,-1.);
1013 AliMUONTrackExtrap::AddMCSEffect(¤tParamBack, (fSegmentation->GetPlane(planeId+1)->GetEquivalentSilicon()+
1014 fSegmentation->GetPlane(planeId)->GetEquivalentSiliconBeforeBack())/fRadLengthSi,-1.);
1016 // for all planes: linear extrapolation to the Z of the plane
1017 AliMUONTrackExtrap::ExtrapToZCov(¤tParamFront, -1.*fSegmentation->GetPlane(planeId)->GetZCenterActiveFront());
1018 AliMUONTrackExtrap::ExtrapToZCov(¤tParamBack, -1.*fSegmentation->GetPlane(planeId)->GetZCenterActiveBack());
1020 Bool_t goodClusterFound = kFALSE;
1022 // Analyizing the clusters: FRONT ACTIVE ELEMENTS
1024 Int_t nClustersFront = fMFTClusterArrayFront[planeId]->GetEntries();
1026 AliDebug(1, Form("nClustersFront = %d\n", nClustersFront));
1027 for (Int_t iCluster=0; iCluster<nClustersFront; iCluster++) {
1028 AliMFTCluster *cluster = (AliMFTCluster*) fMFTClusterArrayFront[planeId]->UncheckedAt(iCluster);
1029 AliDebug(2, Form("checking cluster %02d of %02d: cluter=%p, fCurrentTrack=%p\n", iCluster, nClustersFront, cluster, fCurrentTrack));
1030 if (IsCorrectMatch(cluster)) {
1031 fCurrentTrack->AddTrackParamAtMFTCluster(currentParamFront, *cluster); // creating new track param and attaching the cluster
1032 fCurrentTrack->SetPlaneExists(planeId);
1033 goodClusterFound = kTRUE;
1038 if (goodClusterFound) return;
1040 // Analyizing the clusters: BACK ACTIVE ELEMENTS
1042 Int_t nClustersBack = fMFTClusterArrayBack[planeId]->GetEntries();
1044 AliDebug(1, Form("nClustersBack = %d\n", nClustersBack));
1045 for (Int_t iCluster=0; iCluster<nClustersBack; iCluster++) {
1046 AliMFTCluster *cluster = (AliMFTCluster*) fMFTClusterArrayBack[planeId]->UncheckedAt(iCluster);
1047 AliDebug(2,Form("checking cluster %02d of %02d: cluter=%p, fCurrentTrack=%p\n", iCluster, nClustersBack, cluster, fCurrentTrack));
1048 if (IsCorrectMatch(cluster)) {
1049 fCurrentTrack->AddTrackParamAtMFTCluster(currentParamBack, *cluster); // creating new track param and attaching the cluster
1050 fCurrentTrack->SetPlaneExists(planeId);
1051 goodClusterFound = kTRUE;
1058 //==========================================================================================================================================
1060 void AliMuonForwardTrackFinder::CheckCurrentMuonTrackable() {
1062 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1063 fIsGoodClusterInPlane[iPlane] = kFALSE;
1064 Int_t nClusters = fMFTClusterArray[iPlane]->GetEntriesFast();
1065 for (Int_t iCluster=0; iCluster<nClusters; iCluster++) {
1066 AliMFTCluster *cluster = (AliMFTCluster*) fMFTClusterArray[iPlane]->At(iCluster);
1067 for (Int_t iTrack=0; iTrack<cluster->GetNMCTracks(); iTrack++) {
1068 if (cluster->GetMCLabel(iTrack)==fLabelMC) {
1069 fIsGoodClusterInPlane[iPlane] = kTRUE;
1076 fIsCurrentMuonTrackable = kTRUE;
1077 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) fIsCurrentMuonTrackable = (fIsCurrentMuonTrackable&&fIsGoodClusterInPlane[iPlane]);
1081 //==========================================================================================================================================
1083 void AliMuonForwardTrackFinder::FillPlanesWithTrackHistory() {
1085 // Fill planes with the clusters
1088 AliDebug(2, Form("fFinalBestCandidate->GetNMFTClusters() = %d\n", fFinalBestCandidate->GetNMFTClusters()));
1089 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1090 if (fFinalBestCandidate->PlaneExists(iPlane)) {
1091 AliMFTCluster *trackCluster = fFinalBestCandidate->GetMFTCluster(cluster++);
1092 fGrMFTPlane[kClusterOfTrack][iPlane] -> SetPoint(fGrMFTPlane[kClusterOfTrack][iPlane]->GetN(), trackCluster->GetX(), trackCluster->GetY());
1094 Int_t nClusters = fMFTClusterArray[iPlane]->GetEntriesFast();
1095 for (Int_t iCluster=0; iCluster<nClusters; iCluster++) {
1096 AliMFTCluster *myCluster = (AliMFTCluster*) fMFTClusterArray[iPlane]->UncheckedAt(iCluster);
1097 fGrMFTPlane[kAllClusters][iPlane] -> SetPoint(fGrMFTPlane[kAllClusters][iPlane]->GetN(), myCluster->GetX(), myCluster->GetY());
1098 if (IsCorrectMatch(myCluster)) {
1099 fGrMFTPlane[kClusterCorrectMC][iPlane] -> SetPoint(fGrMFTPlane[kClusterCorrectMC][iPlane]->GetN(), myCluster->GetX(), myCluster->GetY());
1106 //======================================================================================================================================
1108 Bool_t AliMuonForwardTrackFinder::IsCorrectMatch(AliMFTCluster *cluster) {
1110 Bool_t result = kFALSE;
1112 // check if the cluster belongs to the correct MC track
1114 for (Int_t iTrack=0; iTrack<cluster->GetNMCTracks(); iTrack++) {
1115 if (cluster->GetMCLabel(iTrack)==fLabelMC) {
1121 AliDebug(2,Form("returning %d\n", result));
1127 //======================================================================================================================================
1129 Double_t AliMuonForwardTrackFinder::TryOneCluster(const AliMUONTrackParam &trackParam, AliMFTCluster *cluster) {
1131 // Test the compatibility between the track and the cluster (using trackParam's covariance matrix):
1132 // return the corresponding Chi2
1133 // assume the track parameters are given at the Z of the cluster
1135 // Set differences between trackParam and cluster in the bending and non bending directions
1136 Double_t dX = cluster->GetX() - trackParam.GetNonBendingCoor();
1137 Double_t dY = cluster->GetY() - trackParam.GetBendingCoor();
1138 AliDebug(3,Form("dX = %f, dY = %f\n", dX, dY));
1140 // Calculate errors and covariances
1141 const TMatrixD& kParamCov = trackParam.GetCovariances();
1142 Double_t sigmaX2 = kParamCov(0,0) + cluster->GetErrX2();
1143 Double_t sigmaY2 = kParamCov(2,2) + cluster->GetErrY2();
1144 AliDebug(3, Form("dX2 = %f, dY2 = %f\n", sigmaX2, sigmaY2));
1145 Double_t covXY = kParamCov(0,2);
1146 Double_t det = sigmaX2 * sigmaY2 - covXY * covXY;
1149 if (det==0.) return 1.e10;
1150 return (dX*dX*sigmaY2 + dY*dY*sigmaX2 - 2.*dX*dY*covXY) / det;
1154 //=========================================================================================================================================
1156 void AliMuonForwardTrackFinder::SeparateFrontBackClusters() {
1158 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1159 fMFTClusterArrayFront[iPlane]->Clear();
1160 fMFTClusterArrayBack[iPlane] ->Clear();
1161 for (Int_t iCluster=0; iCluster<fMFTClusterArray[iPlane]->GetEntries(); iCluster++) {
1162 AliMFTCluster *cluster = (AliMFTCluster*) fMFTClusterArray[iPlane]->At(iCluster);
1163 if (TMath::Abs(cluster->GetZ())<TMath::Abs(fSegmentation->GetPlane(iPlane)->GetZCenter())) {
1164 new ((*fMFTClusterArrayFront[iPlane])[fMFTClusterArrayFront[iPlane]->GetEntries()]) AliMFTCluster(*cluster);
1167 new ((*fMFTClusterArrayBack[iPlane])[fMFTClusterArrayBack[iPlane]->GetEntries()]) AliMFTCluster(*cluster);
1174 //=========================================================================================================================================
1176 Int_t AliMuonForwardTrackFinder::GetNDF(Int_t nClusters) {
1178 // the same definition as in AliMUONTrack is implemented, since here we just add more clusters to the Muon track
1180 Int_t ndf = 2 * nClusters - 5;
1181 return (ndf > 0) ? ndf : 0;
1185 //============================================================================================================================================
1187 void AliMuonForwardTrackFinder::BookHistos() {
1189 const Int_t nMaxNewTracks[] = {150, 200, 250, 600, 1000};
1190 const Double_t radiusPlane[] = {0.010, 0.010, 0.050, 0.5, 1.5};
1192 fHistRadiusEndOfAbsorber = new TH1D("hRadiusEndOfAbsorber", "Track radial distance at the end of the absorber", 1000, 0, 100.);
1194 fHistNGoodClustersForFinalTracks = new TH1D("hNGoodClustersForFinalTracks", "Number of Good Clusters per Final Track", 20, -0.25, 9.75);
1196 fHistDistanceGoodClusterFromTrackAtLastPlane = new TH1D("hDistanceGoodClusterFromTrackAtLastPlane",
1197 "Distance of MC Good Cluster from Track in last MFT plane", 200, 0., 2.);
1199 fHistDistanceGoodClusterFromTrackMinusDistanceBestClusterFromTrackAtLastPlane =
1200 new TH1D("hDistanceGoodClusterFromTrackMinusDistanceBestClusterFromTrackAtLastPlane",
1201 "Good Cluster distance from track - Best Cluster distance from track in last MFT plane", 200, 0., 2.);
1203 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1205 fHistNTracksAfterExtrapolation[iPlane] = new TH1D(Form("hNTracksAfterExtrapolation_pl%02d", iPlane),
1206 Form("Number of Candidates after analysis of MFT plane %02d", iPlane),
1207 nMaxNewTracks[iPlane], -0.5, nMaxNewTracks[iPlane]-0.5);
1209 fHistResearchRadius[iPlane] = new TH1D(Form("hResearchRadius_pl%02d", iPlane),
1210 Form("Research Radius for candidate clusters in MFT plane %02d", iPlane),
1211 1000, 0., radiusPlane[iPlane]);
1213 fHistChi2Cluster_GoodCluster[iPlane] = new TH1D(Form("hChi2Cluster_GoodCluster_pl%02d", iPlane),
1214 Form("#chi^{2}_{clust} for Good clusters in MFT plane %02d", iPlane),
1217 fHistChi2Cluster_BadCluster[iPlane] = new TH1D(Form("hChi2Cluster_BadCluster_pl%02d", iPlane),
1218 Form("#chi^{2}_{clust} for Bad clusters in MFT plane %02d", iPlane),
1221 fHistGlobalChi2AtPlaneFor_GOOD_CandidatesOfTrackableMuons[iPlane] = new TH1D(Form("fHistGlobalChi2AtPlaneFor_GOOD_CandidatesOfTrackableMuons_pl%02d", iPlane),
1222 Form("#chi^{2}/ndf at plane %d for GOOD candidates of trackable muons",iPlane),
1225 fHistGlobalChi2AtPlaneFor_BAD_CandidatesOfTrackableMuons[iPlane] = new TH1D(Form("fHistGlobalChi2AtPlaneFor_BAD_CandidatesOfTrackableMuons_pl%02d", iPlane),
1226 Form("#chi^{2}/ndf at plane %d for BAD candidates of trackable muons",iPlane),
1231 //------------------------------------------
1233 fHistRadiusEndOfAbsorber -> Sumw2();
1234 fHistNGoodClustersForFinalTracks -> Sumw2();
1236 fHistDistanceGoodClusterFromTrackAtLastPlane -> Sumw2();
1237 fHistDistanceGoodClusterFromTrackMinusDistanceBestClusterFromTrackAtLastPlane -> Sumw2();
1239 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1241 fHistNTracksAfterExtrapolation[iPlane] -> Sumw2();
1242 fHistResearchRadius[iPlane] -> Sumw2();
1244 fHistChi2Cluster_GoodCluster[iPlane] -> Sumw2();
1245 fHistChi2Cluster_BadCluster[iPlane] -> Sumw2();
1247 fHistGlobalChi2AtPlaneFor_GOOD_CandidatesOfTrackableMuons[iPlane] -> Sumw2();
1248 fHistGlobalChi2AtPlaneFor_BAD_CandidatesOfTrackableMuons[iPlane] -> Sumw2();
1252 fNtuFinalCandidates = new TNtuple("ntuFinalCandidates", "Final Candidates (ALL)", "run:event:muonTrack:nFinalCandidates:MCTrackRefExists:xVtx:yVtx:zVtx:motherPdg:triggerMatch:nClustersMC:nGoodClusters:pt:theta:eta:chi2AtPlane0:chi2AtPlane1:chi2AtPlane2:chi2AtPlane3:chi2AtPlane4:chi2AtPlane5:chi2AtPlane6:chi2AtPlane7:chi2AtPlane8");
1254 fNtuFinalBestCandidates = new TNtuple("ntuFinalBestCandidates", "Final Best Candidates", "run:event:muonTrack:nFinalCandidates:MCTrackRefExists:xVtx:yVtx:zVtx:motherPdg:triggerMatch:nClustersMC:nGoodClusters:pt:theta:eta:chi2AtPlane0:chi2AtPlane1:chi2AtPlane2:chi2AtPlane3:chi2AtPlane4:chi2AtPlane5:chi2AtPlane6:chi2AtPlane7:chi2AtPlane8:nClustersAtPlane0:nClustersAtPlane1:nClustersAtPlane2:nClustersAtPlane3:nClustersAtPlane4:nClustersAtPlane5:nClustersAtPlane6:nClustersAtPlane7:nClustersAtPlane8");
1258 //============================================================================================================================================
1260 void AliMuonForwardTrackFinder::SetTitleHistos() {
1262 fHistRadiusEndOfAbsorber -> SetXTitle("R_{abs} [cm]");
1263 fHistNGoodClustersForFinalTracks -> SetXTitle("N_{GoodClusters}");
1265 fHistDistanceGoodClusterFromTrackAtLastPlane -> SetXTitle("Distance [cm]");
1266 fHistDistanceGoodClusterFromTrackMinusDistanceBestClusterFromTrackAtLastPlane -> SetXTitle("Distance [cm]");
1269 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1271 fHistNTracksAfterExtrapolation[iPlane] -> SetXTitle("N_{tracks}");
1272 fHistResearchRadius[iPlane] -> SetXTitle("Research Radius [cm]");
1274 fHistChi2Cluster_GoodCluster[iPlane] -> SetXTitle("#chi^{2}/ndf");
1275 fHistChi2Cluster_BadCluster[iPlane] -> SetXTitle("#chi^{2}/ndf");
1277 fHistGlobalChi2AtPlaneFor_GOOD_CandidatesOfTrackableMuons[iPlane] -> SetXTitle("#chi^{2}/ndf");
1278 fHistGlobalChi2AtPlaneFor_BAD_CandidatesOfTrackableMuons[iPlane] -> SetXTitle("#chi^{2}/ndf");
1284 //===========================================================================================================================================
1286 void AliMuonForwardTrackFinder::BookPlanes() {
1288 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1289 fGrMFTPlane[kAllClusters][iPlane] = new TGraph();
1290 fGrMFTPlane[kAllClusters][iPlane] -> SetName(Form("fGrMFTPlane_%02d_AllClusters",iPlane));
1291 fGrMFTPlane[kAllClusters][iPlane] -> SetMarkerStyle(20);
1292 // fGrMFTPlane[kAllClusters][iPlane] -> SetMarkerSize(0.5);
1293 // fGrMFTPlane[kAllClusters][iPlane] -> SetMarkerSize(0.3);
1294 fGrMFTPlane[kAllClusters][iPlane] -> SetMarkerSize(0.2);
1297 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1298 fGrMFTPlane[kClustersGoodChi2][iPlane] = new TGraph();
1299 fGrMFTPlane[kClustersGoodChi2][iPlane] -> SetName(Form("fGrMFTPlane_%02d_ClustersGoodChi2",iPlane));
1300 fGrMFTPlane[kClustersGoodChi2][iPlane] -> SetMarkerStyle(20);
1301 // fGrMFTPlane[kClustersGoodChi2][iPlane] -> SetMarkerSize(0.8);
1302 // fGrMFTPlane[kClustersGoodChi2][iPlane] -> SetMarkerSize(0.4);
1303 fGrMFTPlane[kClustersGoodChi2][iPlane] -> SetMarkerSize(0.3);
1304 fGrMFTPlane[kClustersGoodChi2][iPlane] -> SetMarkerColor(kBlue);
1307 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1308 fGrMFTPlane[kClusterOfTrack][iPlane] = new TGraph();
1309 fGrMFTPlane[kClusterOfTrack][iPlane] -> SetName(Form("fGrMFTPlane_%02d_ClustersOfTrack",iPlane));
1310 fGrMFTPlane[kClusterOfTrack][iPlane] -> SetMarkerStyle(25);
1311 // fGrMFTPlane[kClusterOfTrack][iPlane] -> SetMarkerSize(1.2);
1312 fGrMFTPlane[kClusterOfTrack][iPlane] -> SetMarkerSize(0.9);
1313 fGrMFTPlane[kClusterOfTrack][iPlane] -> SetMarkerColor(kRed);
1314 fGrMFTPlane[kClusterOfTrack][iPlane] -> SetTitle(Form("Plane %d (%3.1f cm)", iPlane, fZPlane[iPlane]));
1317 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1318 fGrMFTPlane[kClusterCorrectMC][iPlane] = new TGraph();
1319 fGrMFTPlane[kClusterCorrectMC][iPlane] -> SetName(Form("fGrMFTPlane_%02d_ClustersCorrectMC",iPlane));
1320 fGrMFTPlane[kClusterCorrectMC][iPlane] -> SetMarkerStyle(20);
1321 // fGrMFTPlane[kClusterCorrectMC][iPlane] -> SetMarkerSize(0.8);
1322 fGrMFTPlane[kClusterCorrectMC][iPlane] -> SetMarkerSize(0.5);
1323 fGrMFTPlane[kClusterCorrectMC][iPlane] -> SetMarkerColor(kGreen);
1326 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1327 fCircleExt[iPlane] = new TEllipse(0., 0., fRPlaneMax[iPlane], fRPlaneMax[iPlane]);
1328 fCircleInt[iPlane] = new TEllipse(0., 0., fRPlaneMin[iPlane], fRPlaneMin[iPlane]);
1331 fTxtDummy = new TLatex(0.10, 0.59, "Best Candidate:");
1333 //---------------------------------------------------
1335 fMrkAllClust = new TMarker(0.10, 0.32, 20);
1336 fMrkAllClust -> SetMarkerSize(0.5);
1338 fMrkClustGoodChi2 = new TMarker(0.10, 0.26, 20);
1339 fMrkClustGoodChi2 -> SetMarkerSize(0.8);
1340 fMrkClustGoodChi2 -> SetMarkerColor(kBlue);
1342 fMrkClustMC = new TMarker(0.10, 0.20, 20);
1343 fMrkClustMC -> SetMarkerSize(0.8);
1344 fMrkClustMC -> SetMarkerColor(kGreen);
1346 fMrkClustOfTrack = new TMarker(0.10, 0.14, 25);
1347 fMrkClustOfTrack -> SetMarkerSize(1.2);
1348 fMrkClustOfTrack -> SetMarkerColor(kRed);
1350 fTxtAllClust = new TLatex(0.15, 0.30, "All Clusters");
1351 fTxtAllClust -> SetTextSize(0.040);
1353 fTxtClustGoodChi2 = new TLatex(0.15, 0.24, "Clusters involved in the research");
1354 fTxtClustGoodChi2 -> SetTextSize(0.040);
1356 fTxtClustMC = new TLatex(0.15, 0.18, "MC good clusters");
1357 fTxtClustMC -> SetTextSize(0.040);
1359 fTxtClustOfTrack = new TLatex(0.15, 0.12, "Clusters of the best candidate");
1360 fTxtClustOfTrack -> SetTextSize(0.040);
1364 //===========================================================================================================================================
1366 void AliMuonForwardTrackFinder::ResetPlanes() {
1368 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1369 for (Int_t iGr=0; iGr<4; iGr++) {
1370 Int_t nOldClusters = fGrMFTPlane[iGr][iPlane]->GetN();
1371 for (Int_t iPoint=nOldClusters-1; iPoint>=0; iPoint--) fGrMFTPlane[iGr][iPlane]->RemovePoint(iPoint);
1377 //===========================================================================================================================================
1379 void AliMuonForwardTrackFinder::PrintParticleHistory() {
1381 AliDebug(1, "Entering");
1383 TString history = "";
1385 TParticle *part = 0;
1386 if (fLabelMC>=0) part = fStack->Particle(fLabelMC);
1388 AliDebug(1, Form("fStack->Particle(fLabelMC) = %p", part));
1391 if (part->GetFirstMother() != -1) {
1392 TParticle *partMother = fStack->Particle(part->GetFirstMother());
1393 AliDebug(1, Form("fStack->Particle(part->GetFirstMother() = %p", partMother));
1395 Char_t newName[100];
1396 if (partMother->GetFirstMother() != -1) history += "... #rightarrow ";
1397 PDGNameConverter(partMother->GetName(), newName);
1398 history += Form("%s #rightarrow ", newName);
1401 Char_t newName[100];
1402 PDGNameConverter(part->GetName(), newName);
1403 history += Form("%s at z = %5.1f cm", newName, part->Vz());
1404 // printf("%s", history.Data());
1406 else history += "NO AVAILABLE HISTORY";
1408 fTxtMuonHistory = new TLatex(0.10, 0.86, history.Data());
1410 // Filling particle history in the fFinalBestCandidate
1413 for (Int_t iParent=0; iParent<AliMuonForwardTrack::fgkNParentsMax; iParent++) {
1414 if (part->GetFirstMother() == -1) break;
1415 if (!(fStack->Particle(part->GetFirstMother()))) break;
1416 AliDebug(1, Form("fStack->Particle(part->GetFirstMother() = %p", fStack->Particle(part->GetFirstMother())));
1417 fFinalBestCandidate->SetParentMCLabel(iParent, part->GetFirstMother());
1418 fFinalBestCandidate->SetParentPDGCode(iParent, fStack->Particle(part->GetFirstMother())->GetPdgCode());
1419 part = fStack->Particle(part->GetFirstMother());
1425 //===========================================================================================================================================
1427 Bool_t AliMuonForwardTrackFinder::IsMother(Char_t *nameMother) {
1429 Bool_t result = kFALSE;
1431 TParticle *part = 0;
1432 if (fLabelMC>=0) part = fStack->Particle(fLabelMC);
1435 if (part->GetFirstMother() != -1) {
1436 TParticle *partMother = fStack->Particle(part->GetFirstMother());
1438 if (!strcmp(partMother->GetName(), nameMother)) result=kTRUE;
1447 //===========================================================================================================================================
1449 void AliMuonForwardTrackFinder::DrawPlanes() {
1452 if (fNPlanesMFT <= 5) fCanvas -> Divide(3,2);
1453 else if (fNPlanesMFT <= 11) fCanvas -> Divide(4,3);
1454 else if (fNPlanesMFT <= 19) fCanvas -> Divide(5,4);
1456 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1458 fCanvas->cd(fNPlanesMFT-iPlane+1);
1460 fGrMFTPlane[kClusterOfTrack][iPlane] -> GetXaxis() -> SetLimits(-1.1*fRPlaneMax[fNPlanesMFT-1], +1.1*fRPlaneMax[fNPlanesMFT-1]);
1461 fGrMFTPlane[kClusterOfTrack][iPlane] -> GetYaxis() -> SetRangeUser(-1.1*fRPlaneMax[fNPlanesMFT-1], +1.1*fRPlaneMax[fNPlanesMFT-1]);
1462 fGrMFTPlane[kClusterOfTrack][iPlane] -> GetXaxis() -> SetTitle("X [cm]");
1463 fGrMFTPlane[kClusterOfTrack][iPlane] -> GetYaxis() -> SetTitle("Y [cm]");
1464 fGrMFTPlane[kClusterOfTrack][iPlane] -> Draw("ap");
1466 fCircleExt[iPlane] -> Draw("same");
1467 fCircleInt[iPlane] -> Draw("same");
1469 if (fGrMFTPlane[kAllClusters][iPlane]->GetN()) fGrMFTPlane[kAllClusters][iPlane] -> Draw("psame");
1470 if (fGrMFTPlane[kClustersGoodChi2][iPlane]->GetN()) fGrMFTPlane[kClustersGoodChi2][iPlane] -> Draw("psame");
1471 if (fGrMFTPlane[kClusterOfTrack][iPlane]->GetN()) fGrMFTPlane[kClusterOfTrack][iPlane] -> Draw("psame");
1472 if (fGrMFTPlane[kClusterCorrectMC][iPlane]->GetN()) fGrMFTPlane[kClusterCorrectMC][iPlane] -> Draw("psame");
1474 fTxtTrackChi2[iPlane] -> Draw("same");
1479 fTxtMuonHistory -> Draw();
1480 fTxtDummy -> Draw("same");
1481 if (fMatchingMode==kRealMatching) fTxtTrackGoodClusters -> Draw("same");
1482 fTxtTrackFinalChi2 -> Draw("same");
1483 fTxtTrackMomentum -> Draw("same");
1484 if (fMatchingMode==kRealMatching) fTxtFinalCandidates -> Draw("same");
1486 fMrkAllClust -> Draw("same");
1487 fMrkClustGoodChi2 -> Draw("same");
1488 fMrkClustMC -> Draw("same");
1489 fMrkClustOfTrack -> Draw("same");
1491 fTxtAllClust -> Draw("same");
1492 fTxtClustGoodChi2 -> Draw("same");
1493 fTxtClustMC -> Draw("same");
1494 fTxtClustOfTrack -> Draw("same");
1496 // fCanvas -> SaveAs(Form("%s/figures/eventDisplay/run%d_event%d_track%d.eps", fOutDir.Data(), fRun, fEv, fCountRealTracksAnalyzedOfEvent));
1497 fCanvas -> SaveAs(Form("%s/figures/eventDisplay/run%d_event%d_track%d.gif", fOutDir.Data(), fRun, fEv, fCountRealTracksAnalyzedOfEvent));
1498 if (IsMother("phi")) {
1499 fCanvas -> SaveAs(Form("%s/figures/eventDisplay/run%d_event%d_track%d.phi.gif", fOutDir.Data(), fRun, fEv, fCountRealTracksAnalyzedOfEvent));
1500 fCanvas -> SaveAs(Form("%s/figures/eventDisplay/run%d_event%d_track%d.phi.eps", fOutDir.Data(), fRun, fEv, fCountRealTracksAnalyzedOfEvent));
1502 if (IsMother("J/psi")) {
1503 fCanvas -> SaveAs(Form("%s/figures/eventDisplay/run%d_event%d_track%d.jPsi.gif", fOutDir.Data(), fRun, fEv, fCountRealTracksAnalyzedOfEvent));
1504 fCanvas -> SaveAs(Form("%s/figures/eventDisplay/run%d_event%d_track%d.jPsi.eps", fOutDir.Data(), fRun, fEv, fCountRealTracksAnalyzedOfEvent));
1509 //===========================================================================================================================================
1511 void AliMuonForwardTrackFinder::Terminate() {
1514 AliInfo("---------------------------------------------------------------------------------------------------------------");
1515 AliInfo(Form("%8d tracks analyzed", fCountRealTracksAnalyzed));
1516 AliInfo(Form("%8d tracks with MC ref", fCountRealTracksWithRefMC));
1517 AliInfo(Form("%8d tracks with MC ref & trigger match", fCountRealTracksWithRefMC_andTrigger));
1518 if (fMatchingMode==kRealMatching) {
1519 AliInfo(Form("%8d tracks analyzed with final candidates", fCountRealTracksAnalyzedWithFinalCandidates));
1522 AliInfo(Form("%8d tracks matched with their MC clusters", fCountRealTracksAnalyzedWithFinalCandidates));
1524 // printf("%8d tracks with MC ref & trigger match & pt>%3.1f GeV/c", fCountRealTracksWithRefMC_andTrigger_andGoodPt, fLowPtCut);
1525 // printf("%8d tracks with MC ref & trigger match & pt>%3.1f GeV/c & correct R_abs", fCountRealTracksWithRefMC_andTrigger_andGoodPt_andGoodTheta, fLowPtCut);
1526 AliInfo("---------------------------------------------------------------------------------------------------------------");
1533 //==========================================================================================================================================
1535 void AliMuonForwardTrackFinder::FillOutputTree() {
1537 if (!fMuonForwardTracks || !fOutputEventTree) return;
1539 AliDebug(1, Form("Filling output tree %p with %p having %d entries whose 1st entry is %p",
1540 fOutputEventTree, fMuonForwardTracks, fMuonForwardTracks->GetEntries(), fMuonForwardTracks->At(0)));
1542 // fOutputTreeFile->cd();
1543 fOutputEventTree->Fill();
1544 AliDebug(1, Form("\nFilled Tree: nEvents = %d!!!!\n", Int_t(fOutputEventTree->GetEntries())));
1548 //==========================================================================================================================================
1550 void AliMuonForwardTrackFinder::WriteOutputTree() {
1552 if (!fOutputEventTree || !fOutputTreeFile) return;
1554 fOutputTreeFile -> cd();
1556 fOutputEventTree -> Write();
1557 fOutputTreeFile -> Close();
1561 //==========================================================================================================================================
1563 void AliMuonForwardTrackFinder::WriteHistos() {
1565 fOutputQAFile = new TFile(Form("MuonGlobalTracking.QA.run%d.root", fRun), "recreate");
1566 fOutputQAFile -> cd();
1568 fHistRadiusEndOfAbsorber -> Write();
1569 fHistNGoodClustersForFinalTracks -> Write();
1571 fHistDistanceGoodClusterFromTrackAtLastPlane -> Write();
1572 fHistDistanceGoodClusterFromTrackMinusDistanceBestClusterFromTrackAtLastPlane -> Write();
1574 for (Int_t iPlane=0; iPlane<fNPlanesMFT; iPlane++) {
1576 fHistNTracksAfterExtrapolation[iPlane] -> Write();
1577 fHistResearchRadius[iPlane] -> Write();
1579 fHistChi2Cluster_GoodCluster[iPlane] -> Write();
1580 fHistChi2Cluster_BadCluster[iPlane] -> Write();
1582 fHistGlobalChi2AtPlaneFor_GOOD_CandidatesOfTrackableMuons[iPlane] -> Write();
1583 fHistGlobalChi2AtPlaneFor_BAD_CandidatesOfTrackableMuons[iPlane] -> Write();
1587 fNtuFinalCandidates -> Write();
1588 fNtuFinalBestCandidates -> Write();
1590 fOutputQAFile -> Close();
1594 //===========================================================================================================================================
1596 void AliMuonForwardTrackFinder::PDGNameConverter(const Char_t *nameIn, Char_t *nameOut) {
1598 if (!strcmp(nameIn, "mu+")) snprintf(nameOut, 50, "#mu^{+}");
1599 else if (!strcmp(nameIn, "mu-")) snprintf(nameOut, 50, "#mu^{-}");
1600 else if (!strcmp(nameIn, "pi+")) snprintf(nameOut, 50, "#pi^{+}");
1601 else if (!strcmp(nameIn, "pi-")) snprintf(nameOut, 50, "#pi^{-}");
1602 else if (!strcmp(nameIn, "K+")) snprintf(nameOut, 50, "K^{+}");
1603 else if (!strcmp(nameIn, "K-")) snprintf(nameOut, 50, "K^{-}");
1604 else if (!strcmp(nameIn, "K*+")) snprintf(nameOut, 50, "K^{*+}");
1605 else if (!strcmp(nameIn, "K*-")) snprintf(nameOut, 50, "K^{*-}");
1606 else if (!strcmp(nameIn, "K_S0")) snprintf(nameOut, 50, "K_{S}^{0}");
1607 else if (!strcmp(nameIn, "K_L0")) snprintf(nameOut, 50, "K_{L}^{0}");
1608 else if (!strcmp(nameIn, "K0")) snprintf(nameOut, 50, "K^{0}");
1609 else if (!strcmp(nameIn, "K0_bar")) snprintf(nameOut, 50, "#bar{K}^{0}");
1610 else if (!strcmp(nameIn, "K*0")) snprintf(nameOut, 50, "K^{*0}");
1611 else if (!strcmp(nameIn, "K*0_bar")) snprintf(nameOut, 50, "#bar{K}^{*0}");
1612 else if (!strcmp(nameIn, "rho0")) snprintf(nameOut, 50, "#rho^{0}");
1613 else if (!strcmp(nameIn, "rho+")) snprintf(nameOut, 50, "#rho^{+}");
1614 else if (!strcmp(nameIn, "rho-")) snprintf(nameOut, 50, "#rho^{-}");
1615 else if (!strcmp(nameIn, "omega")) snprintf(nameOut, 50, "#omega");
1616 else if (!strcmp(nameIn, "eta'")) snprintf(nameOut, 50, "#eta'");
1617 else if (!strcmp(nameIn, "phi")) snprintf(nameOut, 50, "#phi");
1619 else if (!strcmp(nameIn, "D-")) snprintf(nameOut, 50, "D^{-}");
1620 else if (!strcmp(nameIn, "D+")) snprintf(nameOut, 50, "D^{+}");
1621 else if (!strcmp(nameIn, "D0")) snprintf(nameOut, 50, "D^{0}");
1622 else if (!strcmp(nameIn, "D0_bar")) snprintf(nameOut, 50, "#bar{D}^{0}");
1623 else if (!strcmp(nameIn, "D*-")) snprintf(nameOut, 50, "D^{*-}");
1624 else if (!strcmp(nameIn, "D*+")) snprintf(nameOut, 50, "D^{*+}");
1625 else if (!strcmp(nameIn, "D_s+")) snprintf(nameOut, 50, "D_{s}^{+}");
1626 else if (!strcmp(nameIn, "D*_s+")) snprintf(nameOut, 50, "D_{s}^{*+}");
1628 else if (!strcmp(nameIn, "B-")) snprintf(nameOut, 50, "B^{-}");
1629 else if (!strcmp(nameIn, "B+")) snprintf(nameOut, 50, "B^{+}");
1630 else if (!strcmp(nameIn, "B_s0_bar")) snprintf(nameOut, 50, "#bar{B}_{s}^{0}");
1632 else if (!strcmp(nameIn, "antiproton")) snprintf(nameOut, 50, "#bar{p}");
1633 else if (!strcmp(nameIn, "proton")) snprintf(nameOut, 50, "p");
1634 else if (!strcmp(nameIn, "neutron")) snprintf(nameOut, 50, "n");
1635 else if (!strcmp(nameIn, "Sigma+")) snprintf(nameOut, 50, "#Sigma^{+}");
1636 else if (!strcmp(nameIn, "Delta+")) snprintf(nameOut, 50, "#Delta{+}");
1637 else if (!strcmp(nameIn, "Delta--")) snprintf(nameOut, 50, "#Delta{--}");
1638 else if (!strcmp(nameIn, "Lambda0")) snprintf(nameOut, 50, "#Lambda_0");
1639 else if (!strcmp(nameIn, "Lambda0_bar")) snprintf(nameOut, 50, "#bar{Lambda}_0");
1641 else snprintf(nameOut, 50, "%s", nameIn);
1645 //===========================================================================================================================================
1647 void AliMuonForwardTrackFinder::SetDraw(Bool_t drawOption) {
1649 fDrawOption = drawOption;
1652 fCanvas = new TCanvas("tracking", "tracking", 1200, 800);
1653 fCanvas -> Divide(3,2);
1658 //===========================================================================================================================================
1660 Bool_t AliMuonForwardTrackFinder::InitGRP() {
1662 //------------------------------------
1663 // Initialization of the GRP entry
1664 //------------------------------------
1666 AliCDBEntry* entry = AliCDBManager::Instance()->Get("GRP/GRP/Data");
1670 TMap* m = dynamic_cast<TMap*>(entry->GetObject()); // old GRP entry
1673 AliInfo("Found a TMap in GRP/GRP/Data, converting it into an AliGRPObject");
1675 fGRPData = new AliGRPObject();
1676 fGRPData->ReadValuesFromMap(m);
1680 AliInfo("Found an AliGRPObject in GRP/GRP/Data, reading it");
1681 fGRPData = dynamic_cast<AliGRPObject*>(entry->GetObject()); // new GRP entry
1685 // FIX ME: The unloading of GRP entry is temporarily disabled
1686 // because ZDC and VZERO are using it in order to initialize
1687 // their reconstructor objects. In the future one has to think
1688 // of propagating AliRunInfo to the reconstructors.
1689 // AliCDBManager::Instance()->UnloadFromCache("GRP/GRP/Data");
1693 AliError("No GRP entry found in OCDB!");
1697 TString lhcState = fGRPData->GetLHCState();
1698 if (lhcState==AliGRPObject::GetInvalidString()) {
1699 AliError("GRP/GRP/Data entry: missing value for the LHC state ! Using UNKNOWN");
1700 lhcState = "UNKNOWN";
1703 TString beamType = fGRPData->GetBeamType();
1704 if (beamType==AliGRPObject::GetInvalidString()) {
1705 AliError("GRP/GRP/Data entry: missing value for the beam type ! Using UNKNOWN");
1706 beamType = "UNKNOWN";
1709 Float_t beamEnergy = fGRPData->GetBeamEnergy();
1710 if (beamEnergy==AliGRPObject::GetInvalidFloat()) {
1711 AliError("GRP/GRP/Data entry: missing value for the beam energy ! Using 0");
1715 TString runType = fGRPData->GetRunType();
1716 if (runType==AliGRPObject::GetInvalidString()) {
1717 AliError("GRP/GRP/Data entry: missing value for the run type ! Using UNKNOWN");
1718 runType = "UNKNOWN";
1721 Int_t activeDetectors = fGRPData->GetDetectorMask();
1722 if (activeDetectors==AliGRPObject::GetInvalidUInt()) {
1723 AliError("GRP/GRP/Data entry: missing value for the detector mask ! Using 1074790399");
1724 activeDetectors = 1074790399;
1726 AliDebug(1, Form("activeDetectors = %d", activeDetectors));
1728 fRunInfo = new AliRunInfo(lhcState, beamType, beamEnergy, runType, activeDetectors);
1731 // *** Dealing with the magnetic field map
1733 if ( TGeoGlobalMagField::Instance()->IsLocked() ) {
1734 if (TGeoGlobalMagField::Instance()->GetField()->TestBit(AliMagF::kOverrideGRP)) {
1735 AliInfo("ExpertMode!!! GRP information will be ignored !");
1736 AliInfo("ExpertMode!!! Running with the externally locked B field !");
1739 AliInfo("Destroying existing B field instance!");
1740 delete TGeoGlobalMagField::Instance();
1743 if ( !TGeoGlobalMagField::Instance()->IsLocked() ) {
1744 // Construct the field map out of the information retrieved from GRP.
1747 Float_t l3Current = fGRPData->GetL3Current((AliGRPObject::Stats)0);
1748 if (l3Current == AliGRPObject::GetInvalidFloat()) {
1749 AliError("GRP/GRP/Data entry: missing value for the L3 current !");
1753 Char_t l3Polarity = fGRPData->GetL3Polarity();
1754 if (l3Polarity == AliGRPObject::GetInvalidChar()) {
1755 AliError("GRP/GRP/Data entry: missing value for the L3 polarity !");
1760 Float_t diCurrent = fGRPData->GetDipoleCurrent((AliGRPObject::Stats)0);
1761 if (diCurrent == AliGRPObject::GetInvalidFloat()) {
1762 AliError("GRP/GRP/Data entry: missing value for the dipole current !");
1766 Char_t diPolarity = fGRPData->GetDipolePolarity();
1767 if (diPolarity == AliGRPObject::GetInvalidChar()) {
1768 AliError("GRP/GRP/Data entry: missing value for the dipole polarity !");
1772 // read special bits for the polarity convention and map type
1773 Int_t polConvention = fGRPData->IsPolarityConventionLHC() ? AliMagF::kConvLHC : AliMagF::kConvDCS2008;
1774 Bool_t uniformB = fGRPData->IsUniformBMap();
1777 AliMagF* fld = AliMagF::CreateFieldMap(TMath::Abs(l3Current) * (l3Polarity ? -1:1),
1778 TMath::Abs(diCurrent) * (diPolarity ? -1:1),
1779 polConvention,uniformB,beamEnergy, beamType.Data());
1781 TGeoGlobalMagField::Instance()->SetField( fld );
1782 TGeoGlobalMagField::Instance()->Lock();
1783 AliInfo("Running with the B field constructed out of GRP !");
1785 else AliFatal("Failed to create a B field map !");
1787 else AliFatal("B field is neither set nor constructed from GRP ! Exitig...");
1793 //====================================================================================================================================================
1795 Bool_t AliMuonForwardTrackFinder::SetRunNumber() {
1797 AliCDBManager *man = AliCDBManager::Instance();
1800 AliError("No run loader found!");
1804 fRunLoader->LoadHeader();
1805 // read run number from gAlice
1806 if (fRunLoader->GetHeader()) {
1807 man->SetRun(fRunLoader->GetHeader()->GetRun());
1808 fRunLoader->UnloadHeader();
1811 AliError("No run-loader header found!");
1820 //====================================================================================================================================================