29 #include <THnSparse.h>
30 #include <TObjArray.h>
31 #include <TObjString.h>
32 #include <TGeoGlobalMagField.h>
40 #include "AliESDEvent.h"
41 #include "AliESDMuonTrack.h"
42 #include "AliGeomManager.h"
43 #include "AliCDBManager.h"
44 #include "AliInputEventHandler.h"
45 #include "AliCounterCollection.h"
48 #include "AliAnalysisDataSlot.h"
49 #include "AliAnalysisDataContainer.h"
50 #include "AliAnalysisManager.h"
51 #include "AliCentrality.h"
55 #include "AliMUONCDB.h"
56 #include "AliMUONESDInterface.h"
57 #include "AliMUONVTrackReconstructor.h"
58 #include "AliMUONRecoParam.h"
59 #include "AliMUONGeometryTransformer.h"
60 #include "AliMUONTrack.h"
61 #include "AliMUONTrackParam.h"
62 #include "AliMUONTrackExtrap.h"
63 #include "AliMUONVCluster.h"
64 #include "AliMUONConstants.h"
65 #include "AliMUON2DMap.h"
66 #include "AliMUONVCalibParam.h"
67 #include "AliMUONCalibParamNI.h"
68 #include "AliMUONTrackerData.h"
71 #include "AliMpDEManager.h"
72 #include "AliMpSegmentation.h"
73 #include "AliMpVSegmentation.h"
75 #include "AliMpArea.h"
76 #include "AliMpDEIterator.h"
77 #include "AliMpConstants.h"
78 #include "AliMpDDLStore.h"
82 const Int_t
AliAnalysisTaskMuonTrackingEff::fgkNofDE[11] = {4, 4, 4, 4, 18, 18, 26, 26, 26, 26, 156};
92 fRecoParamOCDBpath(
""),
98 fEnableDisplay(kFALSE),
102 fChamberTDHistList(0x0),
103 fChamberTTHistList(0x0),
104 fChamberSDHistList(0x0),
112 AliAnalysisTaskSE(name),
116 fRecoParamOCDBpath(
""),
122 fEnableDisplay(kFALSE),
126 fChamberTDHistList(0x0),
127 fChamberTTHistList(0x0),
128 fChamberSDHistList(0x0),
134 DefineOutput(1, AliCounterCollection::Class());
135 DefineOutput(2, TList::Class());
136 DefineOutput(3, TList::Class());
137 DefineOutput(4, TList::Class());
138 DefineOutput(5, TList::Class());
145 if (!AliAnalysisManager::GetAnalysisManager()->IsProofMode()) {
166 AliCDBManager* man = AliCDBManager::Instance();
167 if (man->IsDefaultStorageSet()) printf(
"EfficiencyTask: CDB default storage already set!\n");
169 man->SetDefaultStorage(
fOCDBpath.Data());
173 if (man->GetRun() > -1) printf(
"EfficiencyTask: run number already set!\n");
174 else man->SetRun(fCurrentRunNumber);
177 if (!AliGeomManager::GetGeometry()) {
178 AliGeomManager::LoadGeometry();
179 if (!AliGeomManager::GetGeometry())
return;
180 if (!AliGeomManager::ApplyAlignObjsFromCDB(
"MUON"))
return;
186 if (!AliMpSegmentation::Instance(kFALSE) || !AliMpDDLStore::Instance(kFALSE)) {
187 if (!AliMUONCDB::LoadMapping())
return;
191 Double_t pl0[3] = {0., 0., 0.};
192 Double_t pl1[3] = {0., 0., 1.};
193 Double_t pg0[3], pg1[3];
196 for (Int_t i = 0; i < AliMUONConstants::NTrackingCh(); i++) {
199 while (!it.IsDone()) {
200 Int_t deId = it.CurrentDEId();
201 fTransformer->Local2Global(deId, pl0[0], pl0[1], pl0[2], pg0[0], pg0[1], pg0[2]);
202 fTransformer->Local2Global(deId, pl1[0], pl1[1], pl1[2], pg1[0], pg1[1], pg1[2]);
203 TVectorD *plane =
new TVectorD(6);
204 (*plane)[0] = pg0[0];
205 (*plane)[1] = pg0[1];
206 (*plane)[2] = pg0[2];
207 (*plane)[3] = pg1[0] - pg0[0];
208 (*plane)[4] = pg1[1] - pg0[1];
209 (*plane)[5] = pg1[2] - pg0[2];
216 if (!AliMUONESDInterface::GetTracker()) AliMUONESDInterface::ResetTracker();
219 if (!
fMuonTrackCuts) AliFatal(
"You must specify the requested selections (AliMuonTrackCut obj is missing)");
232 fClusters =
new AliCounterCollection(GetOutputSlot(1)->GetContainer()->GetName());
233 fClusters->AddRubric(
"Cluster",
"Detected/Accepted/Expected");
234 fClusters->AddRubric(
"Chamber", AliMpConstants::NofTrackingChambers());
238 fClusters->AddRubric(
"Channel", AliMpConstants::ManuNofChannels());
251 TString histName, histTitle;
254 Int_t nCentBins = 22;
255 Double_t centRange[2] = {-5., 105.};
264 const Int_t nDims = 6;
265 Int_t nBins[nDims] = {0, nCentBins, 20, 15, 15, 2};
266 Double_t xMin[nDims] = {0., centRange[0], 0., -4., 0., -2.};
267 Double_t xMax[nDims] = {0., centRange[1], 20., -2.5, TMath::TwoPi(), 2.};
269 for (Int_t iCh = 0; iCh < 10; iCh++)
273 xMin[0] = 0.; xMax[0] =
static_cast<Double_t
>(
fgkNofDE[iCh]);
274 histTitle.Form(
"ChamberNbr %d", iCh+1);
275 histName.Form(
"TD_ChamberNbr%d", iCh+1);
276 hn =
new THnSparseT<TArrayF>(histName, histTitle, nDims, nBins, xMin, xMax);
278 histName.Form(
"TT_ChamberNbr%d",iCh+1);
279 hn =
new THnSparseT<TArrayF>(histName, histTitle, nDims, nBins, xMin, xMax);
281 histName.Form(
"SD_ChamberNbr%d", iCh+1);
282 hn =
new THnSparseT<TArrayF>(histName, histTitle, nDims, nBins, xMin, xMax);
289 xMin[0] = 0.5; xMax[0] = 10.5;
290 hn =
new THnSparseT<TArrayF>(
"TD_Chambers 11",
"Chambers 11", nDims, nBins, xMin, xMax);
292 hn =
new THnSparseT<TArrayF>(
"TT_Chambers 11",
"Chambers 11", nDims, nBins, xMin, xMax);
294 hn =
new THnSparseT<TArrayF>(
"SD_Chambers 11",
"Chambers 11", nDims, nBins, xMin, xMax);
298 TH1F *fHistCent =
new TH1F(
"fHistCent",
"centrality distribution", nCentBins, centRange[0], centRange[1]);
300 TH1F *fHistPt =
new TH1F(
"fHistPt",
"pt distribution", 250, 0., 50.);
302 TH1F *fHistY =
new TH1F(
"fHistY",
"y distribution", 60, -4., -2.5);
304 TH1F *fHistTheta =
new TH1F(
"fHistTheta",
"theta distribution", 120, 2.8, 3.2);
306 TH1F *fHistP =
new TH1F(
"fHistP",
"momentum distribution", 250, 0., 500.);
308 TH1F *fHistZ =
new TH1F(
"fHistZ",
"Z distribution", 200, -100., 100.);
310 TH1F *fHistPhi =
new TH1F(
"fHistPhi",
"phi distribution", 60, 0., TMath::TwoPi());
312 TH1F *fHistPtRap2p5To2p75 =
new TH1F(
"fHistPtRap2p5To2p75",
"2.5 < y < 2.75", 250, 0., 50.);
314 TH1F *fHistPtRap2p75To3p0 =
new TH1F(
"fHistPtRap2p75To3p0",
"2.75 < y < 3.0", 250, 0., 50.);
316 TH1F *fHistPtRap3p0To3p25 =
new TH1F(
"fHistPtRap3p0To3p25",
"3.0 < y < 3.25", 250, 0., 50.);
318 TH1F *fHistPtRap3p25To3p5 =
new TH1F(
"fHistPtRap3p25To3p5",
"3.25 < y < 3.5", 250, 0., 50.);
320 TH1F *fHistPtRap3p5To3p75 =
new TH1F(
"fHistPtRap3p5To3p75",
"3.5 < y < 3.75", 250, 0., 50.);
322 TH1F *fHistPtRap3p75To4p0 =
new TH1F(
"fHistPtRap3p75To4p0",
"3.75 < y < 4.0", 250, 0., 50.);
324 TH1F *fHistRapPt1p0To2p0 =
new TH1F(
"fHistRapPt1p0To2p0",
"1.0 < pT < 2.0", 60, -4., -2.5);
326 TH1F *fHistRapPt2p0To5p0 =
new TH1F(
"fHistRapPt2p0To5p0",
"2.0 < pT < 5.0", 60, -4., -2.5);
328 TH1F *fHistRapPt5p0To8p0 =
new TH1F(
"fHistRapPt5p0To8p0",
"5.0 < pT < 8.0", 60, -4., -2.5);
330 TH1F *fHistRapPt2p0To4p0 =
new TH1F(
"fHistRapPt2p0To4p0",
"2.0 < pT < 4.0", 60, -4., -2.5);
332 TH1F *fHistRapPt4p0To8p0 =
new TH1F(
"fHistRapPt4p0To8p0",
"4.0 < pT < 8.0", 60, -4., -2.5);
335 TH2D *hDXYOverDXYMax =
new TH2D(
"hDXYOverDXYMax",
"DXY / DXYMax;DX / DXMax;DY / DYMax", 100, -1., 1., 100, -1., 1.);
337 TH2D *hDXOverDXMax =
new TH2D(
"hDXOverDXMax",
"DX / DXMax vs pXZ;pXZ;DX / DXMax", 50, 0., 500., 100, -1., 1.);
339 TH2D *hDYOverDYMax =
new TH2D(
"hDYOverDYMax",
"DY / DYMax vs pYZ;pYZ;DY / DYMax", 50, 0., 500., 100, -1., 1.);
356 if (!
fOCDBLoaded) AliFatal(
"Problem occur while loading OCDB objects");
359 AliESDEvent* esd =
dynamic_cast<AliESDEvent*
>(InputEvent());
363 Double_t cent = esd->GetCentrality()->GetCentralityPercentileUnchecked(
"V0M");
364 if (cent <= fCentMin || cent >
fCentMax)
return;
369 Int_t nTracks = (Int_t)esd->GetNumberOfMuonTracks();
370 for (Int_t iTrack = 0; iTrack < nTracks; iTrack++) {
371 AliESDMuonTrack *esdTrack = esd->GetMuonTrack(iTrack);
374 Double_t pT = esdTrack->Pt();
376 (
fUseMCLabel && (esdTrack->GetLabel() < 0 || esdTrack->TestBit(BIT(22)))))
continue;
379 Double_t y = esdTrack->Y();
380 Double_t phi = esdTrack->Phi();
383 static_cast<TH1F*
>(
fExtraHistList->At(3))->Fill(esdTrack->Theta());
385 static_cast<TH1F*
>(
fExtraHistList->At(5))->Fill(esdTrack->GetZ());
387 if ( (y < -2.5) && (y > -2.75) ) static_cast<TH1F*>(
fExtraHistList->At(7))->Fill(pT);
388 if ( (y < -2.75) && (y > -3.0) ) static_cast<TH1F*>(
fExtraHistList->At(8))->Fill(pT);
389 if ( (y < -3.0) && (y > -3.25) ) static_cast<TH1F*>(
fExtraHistList->At(9))->Fill(pT);
390 if ( (y < -3.25) && (y > -3.5) ) static_cast<TH1F*>(
fExtraHistList->At(10))->Fill(pT);
391 if ( (y < -3.5) && (y > -3.75) ) static_cast<TH1F*>(
fExtraHistList->At(11))->Fill(pT);
392 if ( (y < -3.75) && (y > -4.0) ) static_cast<TH1F*>(
fExtraHistList->At(12))->Fill(pT);
393 if ( (pT > 1.0) && (pT < 2.0) ) static_cast<TH1F*>(
fExtraHistList->At(13))->Fill(y);
394 if ( (pT > 2.0) && (pT < 5.0) ) static_cast<TH1F*>(
fExtraHistList->At(14))->Fill(y);
395 if ( (pT > 5.0) && (pT < 8.0) ) static_cast<TH1F*>(
fExtraHistList->At(15))->Fill(y);
396 if ( (pT > 2.0) && (pT < 4.0) ) static_cast<TH1F*>(
fExtraHistList->At(16))->Fill(y);
397 if ( (pT > 4.0) && (pT < 8.0) ) static_cast<TH1F*>(
fExtraHistList->At(17))->Fill(y);
400 AliMUONESDInterface::ESDToMUON(*esdTrack, track);
401 Double_t trackInfo[6] = {0., cent, pT, y, phi,
static_cast<Double_t
>(esdTrack->Charge())};
404 Bool_t removableChambers[10];
408 Int_t previousCh = -1;
409 TObjArray *trackParams = track.GetTrackParamAtCluster();
410 AliMUONTrackParam *trackParam =
static_cast<AliMUONTrackParam*
>(trackParams->First());
413 AliMUONVCluster* cluster = trackParam->GetClusterPtr();
414 Int_t currentCh = cluster->GetChamberId();
415 Int_t currentDE = cluster->GetDetElemId();
418 Double_t pos[3] = {cluster->GetX(), cluster->GetY(), cluster->GetZ()};
422 AliMUONTrackParam *nextTrackParam =
static_cast<AliMUONTrackParam*
>(trackParams->After(trackParam));
423 Int_t nextCh = nextTrackParam ? nextTrackParam->GetClusterPtr()->GetChamberId() : 10;
429 if (trackParam->IsRemovable()) {
430 Bool_t recordChamber = (removableChambers[currentCh] && currentCh != nextCh);
436 while (previousCh < currentCh-1 && (isValidTrack || previousCh < 5))
440 if (!isValidTrack && currentCh > 5)
break;
443 if (currentCh != previousCh && currentCh != nextCh)
446 if (nextTrackParam) {
449 previousCh = currentCh;
450 trackParam = nextTrackParam;
455 while (++currentCh < 10 && (isValidTrack || currentCh < 6))
480 fClusters =
static_cast<AliCounterCollection*
>(GetOutputData(1));
484 AliCDBManager* man = AliCDBManager::Instance();
485 if (!man->IsDefaultStorageSet()) {
486 if (gROOT->IsBatch()) man->SetDefaultStorage(
"alien://folder=/alice/simulation/2008/v4-15-Release/Ideal");
487 else man->SetDefaultStorage(
"local://$ALICE_ROOT/OCDB");
489 if (man->GetRun() < 0) man->SetRun(0);
490 if (!AliMpSegmentation::Instance(kFALSE) || !AliMpDDLStore::Instance(kFALSE)) {
491 if (!AliMUONCDB::LoadMapping())
return;
494 TString clusterKey[3] = {
"Detected",
"Accepted",
"Expected"};
497 TObjArray *deKeys =
fClusters->GetKeyWords(
"DE").Tokenize(
",");
498 Int_t nDEs = deKeys->GetEntriesFast();
501 for (Int_t iKey = 0; iKey < 3; iKey++) {
504 AliMUON2DMap clustersStore(kTRUE);
507 for (Int_t iDE = 0; iDE < nDEs; iDE++) {
510 TString deKey =
static_cast<TObjString*
>(deKeys->UncheckedAt(iDE))->GetString();
511 Int_t deId = deKey.Atoi();
514 TH2D *channelVsManu =
fClusters->Get(
"channel",
"Manu",
515 Form(
"Cluster:%s/DE:%s", clusterKey[iKey].
Data(), deKey.Data()));
516 Int_t nManus = channelVsManu->GetNbinsX();
517 Int_t nChannels = channelVsManu->GetNbinsY();
520 for (Int_t iManu = 1; iManu <= nManus; iManu++) {
523 TString manuKey = channelVsManu->GetXaxis()->GetBinLabel(iManu);
524 Int_t manuId = manuKey.Atoi();
527 for (Int_t iChannel = 1; iChannel <= nChannels; iChannel++) {
530 TString channelKey = channelVsManu->GetYaxis()->GetBinLabel(iChannel);
531 Int_t channelId = channelKey.Atoi();
534 Int_t nClusters =
static_cast<Int_t
>(channelVsManu->GetBinContent(iManu, iChannel));
535 if (nClusters < 1)
continue;
538 AliMUONVCalibParam* c =
static_cast<AliMUONVCalibParam*
>(clustersStore.FindObject(deId, manuId));
540 c =
new AliMUONCalibParamNI(1, AliMpConstants::ManuNofChannels(), deId, manuId);
541 clustersStore.Add(c);
543 c->SetValueAsInt(channelId, 0, nClusters);
550 delete channelVsManu;
555 TString
suffix = GetName();
556 suffix.ReplaceAll(
"MuonTrackingEfficiency",
"");
557 AliMUONTrackerData clustersData(Form(
"%sClusters%s", clusterKey[iKey].
Data(), suffix.Data()),
558 Form(
"%s clusters %s", clusterKey[iKey].
Data(), suffix.Data()), 1, kFALSE);
559 clustersData.SetDimensionName(0,
"count");
560 clustersData.Add(clustersStore);
563 TFile *outFile = TFile::Open(
"DisplayResults.root",
"UPDATE");
564 if (outFile && outFile->IsOpen()) {
565 clustersData.Write(0x0, TObject::kOverwrite);
582 for (Int_t i = 0; i < 10; i++) removableChambers[i] = kFALSE;
585 UInt_t requestedStationMask = AliMUONESDInterface::GetTracker()->GetRecoParam()->RequestedStationMask();
586 Bool_t request2ChInSameSt45 = !AliMUONESDInterface::GetTracker()->GetRecoParam()->MakeMoreTrackCandidates();
587 Bool_t isValidTrack = track.IsValid(requestedStationMask, request2ChInSameSt45);
590 Int_t nClInCh[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
591 Int_t nChInSt[5] = {0, 0, 0, 0, 0};
592 Int_t previousCh = -1;
593 Int_t nClusters = track.GetNClusters();
594 for (Int_t i = 0; i < nClusters; i++) {
596 AliMUONTrackParam *trackParam =
static_cast<AliMUONTrackParam*
>(track.GetTrackParamAtCluster()->UncheckedAt(i));
597 Int_t currentCh = trackParam->GetClusterPtr()->GetChamberId();
598 Int_t currentSt = currentCh/2;
600 nClInCh[currentCh]++;
602 if (currentCh != previousCh) {
603 previousCh = currentCh;
604 nChInSt[currentSt]++;
610 for (Int_t i = 0; i < nClusters; i++) {
612 AliMUONTrackParam *trackParam =
static_cast<AliMUONTrackParam*
>(track.GetTrackParamAtCluster()->UncheckedAt(i));
613 Int_t currentCh = trackParam->GetClusterPtr()->GetChamberId();
614 Int_t currentSt = currentCh/2;
619 if (!((1 << currentSt) & requestedStationMask) ||
620 nChInSt[currentSt] == 2) {
622 removableChambers[currentCh] = kTRUE;
623 trackParam->SetRemovable(kTRUE);
625 }
else if (nClInCh[currentCh] == 2) {
627 trackParam->SetRemovable(kTRUE);
634 if (!isValidTrack)
continue;
636 if (((request2ChInSameSt45 &&
637 nChInSt[4-currentSt/4] == 2) ||
638 (!request2ChInSameSt45 &&
639 nChInSt[3]+nChInSt[4] >= 3)) &&
640 (!((1 << currentSt) & requestedStationMask) ||
641 nChInSt[currentSt] == 2)) {
643 removableChambers[currentCh] = kTRUE;
644 trackParam->SetRemovable(kTRUE);
646 }
else if (nClInCh[currentCh] == 2) {
648 trackParam->SetRemovable(kTRUE);
662 Double_t trackInfo[6])
666 static const Double_t maxDZ = 0.01;
667 static const Double_t maxDevX = 0.01;
668 static const Double_t maxDevY = 0.1;
669 static const Double_t minDXY = 1.;
671 Bool_t missingChamber = (chamber != param.GetClusterPtr()->GetChamberId());
672 Int_t startDE = param.GetClusterPtr()->GetDetElemId();
673 Double_t pos[3], maxDX, maxDY, dZ = 0.;
674 AliMUONTrackParam param1, param2;
678 param1.SetParameters(param.GetParameters());
679 param1.SetZ(param.GetZ());
680 if (missingChamber && !AliMUONTrackExtrap::ExtrapToZ(¶m1, AliMUONConstants::DefaultChamberZ(chamber)))
return;
682 Double_t pX = param1.Px();
683 Double_t pY = param1.Py();
684 Double_t pZ = param1.Pz();
685 Double_t pXZ = TMath::Sqrt(pX*pX + pZ*pZ);
686 Double_t pYZ = TMath::Sqrt(pY*pY + pZ*pZ);
691 while (!it.IsDone()) {
692 Int_t deId = it.CurrentDEId();
695 if (deId == startDE) {
701 param2.SetParameters(param1.GetParameters());
702 param2.SetZ(param1.GetZ());
706 Bool_t crossDE = kFALSE;
707 Bool_t extrapOk = kTRUE;
712 Double_t dX = pos[0]-param2.GetNonBendingCoor();
713 Double_t dY = pos[1]-param2.GetBendingCoor();
714 Double_t dXOverDXMax = (dZ > 0.) ? dX*pXZ/(maxDevX*dZ) : 0.;
715 Double_t dYOverDYMax = (dZ > 0.) ? dY*pYZ/(maxDevY*dZ) : 0.;
716 static_cast<TH2D*
>(
fExtraHistList->At(18))->Fill(dXOverDXMax, dYOverDYMax);
717 static_cast<TH2D*
>(
fExtraHistList->At(19))->Fill(pXZ, dXOverDXMax);
718 static_cast<TH2D*
>(
fExtraHistList->At(20))->Fill(pYZ, dYOverDYMax);
719 if (dXOverDXMax >= 1.) printf(
"st = %d; pXZ = %f; dZ = %f; dX = %f; dX*PXZ/(dZ*maxDevX) = %f\n",
720 chamber/2, pXZ, dZ, dX, dXOverDXMax);
721 if (dYOverDYMax >= 1.) printf(
"st = %d; pYZ = %f; dZ = %f; dY = %f; dY*PYZ/(dZ*maxDevY) = %f\n",
722 chamber/2, pYZ, dZ, dY, dYOverDYMax);
728 dZ = TMath::Abs(pos[2]-param2.GetZ());
729 maxDX = minDXY + maxDevX*dZ/pXZ;
730 maxDY = minDXY + maxDevY*dZ/pYZ;
731 AliMpArea area(pos[0], pos[1], maxDX, maxDY);
734 }
while(crossDE && dZ > maxDZ && (extrapOk = AliMUONTrackExtrap::ExtrapToZ(¶m2, pos[2])));
737 if (crossDE && extrapOk &&
FindPads(deId, pos, pad)) {
739 missingChamber = kFALSE;
752 Double_t pos[3] = {param.GetNonBendingCoor(), param.GetBendingCoor(), param.GetZ()};
753 Double_t slope[2] = {param.GetNonBendingSlope(), param.GetBendingSlope()};
754 TVectorD &plane = *(
static_cast<TVectorD*
>(
fDEPlanes->UncheckedAt(deId)));
756 p[2] = (plane[3]*(slope[0]*pos[2]-pos[0]+plane[0]) + plane[4]*(slope[1]*pos[2]-pos[1]+plane[1]) + plane[5]*plane[2]) /
757 (plane[3]*slope[0] + plane[4]*slope[1] + plane[5]);
758 p[0] = slope[0]*(p[2]-pos[2]) + pos[0];
759 p[1] = slope[1]*(p[2]-pos[2]) + pos[1];
768 AliMpArea* globalDEArea =
fTransformer->GetDEArea(deId);
769 if (!globalDEArea)
return kFALSE;
771 return area.Overlap(*globalDEArea);
777 TString clusterKey, TList *chamberHistList, Bool_t recordChamber)
782 for (Int_t iCath = 0; iCath < 2; iCath++)
if (pad[iCath].IsValid()) {
783 Int_t manuId = pad[iCath].GetManuId();
784 Int_t busPatchId = AliMpDDLStore::Instance()->GetBusPatchId(deId,manuId);
785 fClusters->Count(Form(
"Cluster:%s/Chamber:%d/DE:%d/BusPatch:%d/Manu:%d/Channel:%d",
786 clusterKey.Data(), chamber, deId, busPatchId, manuId, pad[iCath].GetManuChannel()));
790 trackInfo[0] =
static_cast<Double_t
>(deId%100);
791 static_cast<THnSparse*
>(chamberHistList->At(chamber))->Fill(trackInfo);
795 trackInfo[0] =
static_cast<Double_t
>(chamber+1);
796 static_cast<THnSparse*
>(chamberHistList->At(10))->Fill(trackInfo);
806 static const AliMpPad emptyPad;
809 Double_t localPos[3];
810 fTransformer->Global2Local(deId, pos[0], pos[1], pos[2], localPos[0], localPos[1], localPos[2]);
813 for (Int_t iCath = 0; iCath < 2; iCath++) {
814 const AliMpVSegmentation* seg = AliMpSegmentation::Instance()->GetMpSegmentation(deId, AliMp::GetCathodType(iCath));
815 if (seg) pad[iCath] = seg->PadByPosition(localPos[0], localPos[1], kFALSE);
816 else pad[iCath] = emptyPad;
819 return (pad[0].IsValid() || pad[1].IsValid());
Bool_t OverlapDE(AliMpArea &area, Int_t deId)
virtual void Terminate(Option_t *)
virtual ~AliAnalysisTaskMuonTrackingEff()
ClassImp(AliAnalysisTaskMuonTrackingEff) const Int_t AliAnalysisTaskMuonTrackingEff
TList * fExtraHistList
List of extra histograms.
TList * fChamberTTHistList
List of histograms of the tracks which have passed through the chambers.
Bool_t TagRemovableClusters(AliMUONTrack &track, Bool_t removableChambers[10])
TString fRecoParamOCDBpath
OCDB path to the recoParam file.
Bool_t fOCDBLoaded
Determine if the OCDB and =geometry have been loaded.
Double_t fCentMax
select centrality <= fCentMax
tracking chamber efficiency from ESD data
void RecordCluster(Int_t chamber, Int_t deId, AliMpPad pad[2], Double_t trackInfo[6], TString clusterKey, TList *chamberHistList, Bool_t recordChamber)
AliAnalysisTaskMuonTrackingEff()
Bool_t fEnableDisplay
enable the display in the terminate
TList * fChamberTDHistList
List of histograms of the tracks detected in the chambers.
Bool_t FindPads(Int_t deId, Double_t pos[3], AliMpPad pad[2])
Look for pads at the cluster's location.
static const Int_t fgkNofDE[11]
Total number of detection elements in each chamber.
AliMUONGeometryTransformer * fTransformer
Transformer object.
void Intersect(AliMUONTrackParam ¶m, Int_t deId, Double_t p[3])
Bool_t fUseMCLabel
select tracks using MC label
TString fOCDBpath
OCDB path.
static const Int_t fgkNofManu
Total number of manus.
Bool_t Data(TH1F *h, Double_t *rangefit, Bool_t writefit, Double_t &sgn, Double_t &errsgn, Double_t &bkg, Double_t &errbkg, Double_t &sgnf, Double_t &errsgnf, Double_t &sigmafit, Int_t &status)
Double_t fPtCut
cut on minimum pt
void FindAndRecordMissingClusters(AliMUONTrackParam ¶m, Int_t chamber, Double_t trackInfo[6])
AliCounterCollection * fClusters
detected (all), accepted (for efficiency calculation) and expected clusters
virtual void UserExec(Option_t *)
static const Int_t fgkNofBusPath
Total number of bus patches.
AliMuonTrackCuts * fMuonTrackCuts
cuts to select tracks to be considered
TList * fChamberSDHistList
List of histograms of the tracks only detected by one chamber of the station.
virtual void UserCreateOutputObjects()
TObjArray * fDEPlanes
vectors (x0, y0, z0, a, b, c) defining the plane of each DE in the global frame
TString fAlignOCDBpath
OCDB path to the alignment file.