19 #include <Riostream.h>
20 #include "TObjString.h"
21 #include "TObjArray.h"
28 #include "TDirectory.h"
34 #include "TGridResult.h"
35 #include "TGraphAsymmErrors.h"
45 #include "TFileMerger.h"
46 #include "TFitResultPtr.h"
49 #include "AliMergeableCollection.h"
50 #include "AliCounterCollection.h"
52 #include "AliAnalysisMuonUtility.h"
55 #include "AliCDBManager.h"
56 #include "AliCDBStorage.h"
58 #include "AliCDBEntry.h"
59 #include "AliMUONCDB.h"
60 #include "AliMUONTriggerEfficiencyCells.h"
109 return SetCondition(physSel, trigClassName, centrality, itrackSel, imatch, imethod, kFALSE);
117 if ( ! trigOut->GetMergeableCollection() ) {
118 AliError(Form(
"Cannot find %s in %s\n",outputName,filename));
128 effHistoList->SetName(filename);
129 TString currRun = AliAnalysisMuonUtility::GetRunNumberAsString(filename);
130 effHistoList->SetUniqueID(currRun.Atoi());
150 if ( irpc == 0 || irpc == 9 ) {
151 Int_t arr[] = {26,27,28,29,48,49,50,51,68,69,84,85,100,101,113};
152 Int_t nBoards =
sizeof(arr)/
sizeof(arr[0]);
153 boards.Set(nBoards,arr);
155 for (
Int_t iboard=0; iboard<nBoards; iboard++ ) boards[iboard] += 117;
157 else if ( irpc == 1 || irpc == 8 ) {
158 Int_t arr[] = {9,10,11,30,31,32,33,52,53,54,55,70,71,86,87,102,103,114};
159 Int_t nBoards =
sizeof(arr)/
sizeof(arr[0]);
160 boards.Set(nBoards,arr);
162 for (
Int_t iboard=0; iboard<nBoards; iboard++ ) boards[iboard] += 117;
164 else if ( irpc == 2 || irpc == 7 ) {
165 Int_t arr[] = {12,13,34,35,56,57,72,73,88,89,104,105,115};
166 Int_t nBoards =
sizeof(arr)/
sizeof(arr[0]);
167 boards.Set(nBoards,arr);
169 for (
Int_t iboard=0; iboard<nBoards; iboard++ ) boards[iboard] += 117;
171 else if ( irpc == 3 || irpc == 6 ) {
172 Int_t arr[] = {14,15,36,37,58,59,74,75,90,91,106,107,116};
173 Int_t nBoards =
sizeof(arr)/
sizeof(arr[0]);
174 boards.Set(nBoards,arr);
176 for (
Int_t iboard=0; iboard<nBoards; iboard++ ) boards[iboard] += 117;
178 else if ( irpc == 4 || irpc == 5 ) {
179 Int_t arr[] = {16,38,60,76,92,108,117};
180 Int_t nBoards =
sizeof(arr)/
sizeof(arr[0]);
181 boards.Set(nBoards,arr);
183 for (
Int_t iboard=0; iboard<nBoards; iboard++ ) boards[iboard] += 117;
185 else if ( irpc == 17 || irpc == 10 ) {
186 Int_t arr[] = {6,7,8,22,23,24,25,44,45,46,47,66,67,82,83,98,99,112};
187 Int_t nBoards =
sizeof(arr)/
sizeof(arr[0]);
188 boards.Set(nBoards,arr);
190 for (
Int_t iboard=0; iboard<nBoards; iboard++ ) boards[iboard] += 117;
192 else if ( irpc == 16 || irpc == 11 ) {
193 Int_t arr[] = {4,5,20,21,42,43,64,65,80,81,96,97,111};
194 Int_t nBoards =
sizeof(arr)/
sizeof(arr[0]);
195 boards.Set(nBoards,arr);
197 for (
Int_t iboard=0; iboard<nBoards; iboard++ ) boards[iboard] += 117;
199 else if ( irpc == 15 || irpc == 12 ) {
200 Int_t arr[] = {2,3,18,19,40,41,62,63,78,79,94,95,110};
201 Int_t nBoards =
sizeof(arr)/
sizeof(arr[0]);
202 boards.Set(nBoards,arr);
204 for (
Int_t iboard=0; iboard<nBoards; iboard++ ) boards[iboard] += 117;
206 else if ( irpc == 14 || irpc == 13 ) {
207 Int_t arr[] = {1,17,39,61,77,93,109};
208 Int_t nBoards =
sizeof(arr)/
sizeof(arr[0]);
209 boards.Set(nBoards,arr);
211 for (
Int_t iboard=0; iboard<nBoards; iboard++ ) boards[iboard] += 117;
222 if ( srcs.Contains(
"raw://") ) {
223 AliError(
"The method assumes that the specified storage is a SpecificStorage. Hence, please replace raw:// with the actual path in alien, e.g.: alien://folder=/alice/data/<year>/OCDB");
226 TObjArray* sourceList = srcs.Tokenize(
",");
228 effMapList.SetOwner();
230 TString trigEffCDBdir =
"MUON/Calib/TriggerEfficiency";
232 TIter next(sourceList);
233 TObjString* src = 0x0;
234 while ( (src = static_cast<TObjString*>(next())) ) {
235 TString currSrc = src->String();
236 if ( currSrc.BeginsWith(
"alien") && ! gGrid ) TGrid::Connect(
"alien://");
238 AliMUONTriggerEfficiencyCells* effMap = 0x0;
239 if ( currSrc.EndsWith(
".root") ) effMap =
new AliMUONTriggerEfficiencyCells(currSrc.Data());
241 TObjArray* dirRun = currSrc.Tokenize(
"?");
243 TString runNum = ( dirRun->GetEntriesFast() > 1 ) ? dirRun->UncheckedAt(1)->GetName() :
"";
244 AliCDBManager* mgr = AliCDBManager::Instance();
245 if ( ! mgr->GetDefaultStorage() ) mgr->SetDefaultStorage(
"local://$ALICE_ROOT/OCDB");
246 if ( mgr->GetSpecificStorage(trigEffCDBdir.Data()) ) mgr->UnloadFromCache(trigEffCDBdir.Data());
247 mgr->SetSpecificStorage(trigEffCDBdir.Data(),cdbPath.Data());
249 if ( runNum.IsNull() ) {
250 cout <<
"Please enter run number: " << endl;
253 else runNumber = runNum.Atoi();
254 mgr->SetRun(runNumber);
255 AliCDBEntry* cdbEntry = mgr->Get(trigEffCDBdir.Data());
259 effMap =
static_cast<AliMUONTriggerEfficiencyCells*
>(cdbEntry->GetObject()->Clone());
261 if ( ! effMap )
continue;
262 effMapList.Add(effMap);
274 TObjArray* titleList = sTitles.Tokenize(
",");
278 Int_t nLists = effMapList->GetEntriesFast();
280 TString sCanvasNameSuffix(canvasNameSuffix);
281 if ( ! sCanvasNameSuffix.IsNull() && ! sCanvasNameSuffix.BeginsWith(
"_") ) sCanvasNameSuffix.Prepend(
"_");
284 enum {kEff, kDiff, kPull};
289 if ( sOpt.Contains(
"diff") ) {
291 yTitle =
"Eff. - (ref.Eff)";
293 else if ( sOpt.Contains(
"pull") ) {
295 yTitle =
"(Eff - (ref.Eff)) / err";
299 Bool_t needsLegend = ( nLists > 1 );
302 Int_t colors[] = {kBlack, kRed, kSpring, kTeal, kBlue, kViolet, kMagenta, kOrange, kGray};
303 Int_t ncolors =
sizeof(colors)/
sizeof(colors[0]);
305 Int_t hTypes[2] = {AliMUONTriggerEfficiencyCells::kHboardCount,AliMUONTriggerEfficiencyCells::kHslatCount};
306 Int_t countTypes[3] = {AliMUONTriggerEfficiencyCells::kBendingEff,AliMUONTriggerEfficiencyCells::kNonBendingEff,AliMUONTriggerEfficiencyCells::kBothPlanesEff};
310 for (
Int_t itype=0; itype<2; itype++ ) {
311 TString xTitle = ( hTypes[itype] == AliMUONTriggerEfficiencyCells::kHslatCount ) ?
"RPC" :
"Board";
312 for (
Int_t icount=0; icount<3; icount++ ) {
314 for (
Int_t ich=0; ich<4; ich++ ) {
319 for (
Int_t ilist=0; ilist<nLists; ilist++ ) {
320 TString currTitle = titleList->At(ilist)->GetName();
321 AliMUONTriggerEfficiencyCells* effMap =
static_cast<AliMUONTriggerEfficiencyCells*
>(effMapList->UncheckedAt(ilist));
322 currName = effMap->GetHistoName(hTypes[itype],AliMUONTriggerEfficiencyCells::kAllTracks,ich);
323 TH1* histoDen =
static_cast<TH1*
>(effMap->GetHistoList()->FindObject(currName.Data()));
324 currName = effMap->GetHistoName(hTypes[itype],countTypes[icount],ich);
325 TH1* histoNum =
static_cast<TH1*
>(effMap->GetHistoList()->FindObject(currName.Data()));
327 currName = histoNum->GetName();
328 currName.ReplaceAll(
"Count",
"Eff");
329 currName.Append(Form(
"_%s",currTitle.Data()));
330 graph->SetName(currName.Data());
332 if ( iopt != kEff ) {
334 for (
Int_t ipt=0; ipt<graph->GetN(); ipt++ ) {
335 refGraph->GetPoint(ipt,xref,yref);
336 graph->GetPoint(ipt,xpt,ypt);
338 if ( TMath::Abs(diff) > 1.e-4 ) nDiffs++;
339 if ( iopt == kDiff ) graph->SetPoint(ipt,xpt,diff);
340 else if ( iopt == kPull ) {
341 Double_t err =
GetError(graph->GetErrorYlow(ipt),graph->GetErrorYhigh(ipt));
342 Double_t pull = ( err > 0. ) ? diff/err : 0.;
343 graph->SetPoint(ipt,xpt,pull);
354 currName = graph->GetName();
355 currName.Remove(currName.Length()-currTitle.Length()-5);
356 currName += sCanvasNameSuffix;
357 can =
new TCanvas(currName.Data(),currName.Data(),20*ican,20*ican,600,600);
361 if ( needsLegend && ! leg ) {
362 leg =
new TLegend(0.35, 0.15, 0.65, 0.45);
363 if ( refGraph ) leg->SetHeader(Form(
"Ref.: %s",titleList->At(0)->GetName()));
367 Int_t icolor = ( ilist < ncolors ) ? colors[ilist] : 20+ilist;
368 graph->SetLineColor(icolor);
369 graph->SetMarkerColor(icolor);
370 graph->SetMarkerStyle(20+ilist);
371 graph->SetMarkerSize(0.5);
372 graph->GetXaxis()->SetTitle(xTitle.Data());
373 graph->GetYaxis()->SetTitle(yTitle.Data());
374 graph->Draw((gPad->GetListOfPrimitives()->GetEntries()==0)?
"ap":
"p");
375 if ( leg ) leg->AddEntry(graph,titleList->At(ilist)->GetName(),
"lp");
377 if (leg ) leg->Draw();
393 AliWarning(
"No condition found! Please specify the default efficiency condition with SetEffConditions and then add additional tests with AddSystematicCondition");
402 condTitle.SetOwner();
407 effMapList.SetOwner();
409 for (
Int_t icond=0; icond<nConditions; icond++ ) {
413 AliMUONTriggerEfficiencyCells* effMap =
new AliMUONTriggerEfficiencyCells(effList);
414 effMapList.Add(effMap);
415 titles += Form(
"%s,",condTitle.At(icond)->GetName());
418 titles.Remove(TString::kTrailing,
',');
432 effMapList.SetOwner();
436 while ( (trigOut = static_cast<AliTrigChEffOutput*>(next())) ) {
438 AliMUONTriggerEfficiencyCells* effMap =
new AliMUONTriggerEfficiencyCells(effList);
439 effMapList.Add(effMap);
440 titles += Form(
"%s,",trigOut->GetName());
442 titles.Remove(TString::kTrailing,
',');
489 TDirectory *savdir = gDirectory;
490 TDirectory *adir = savdir->mkdir(source->GetName());
494 TIter nextkey(source->GetListOfKeys());
495 while ((key = (TKey*)nextkey())) {
496 const char *classname = key->GetClassName();
497 TClass *cl = gROOT->GetClass(classname);
499 if (cl->InheritsFrom(TDirectory::Class())) {
500 source->cd(key->GetName());
501 TDirectory *subdir = gDirectory;
505 }
else if (cl->InheritsFrom(TTree::Class())) {
508 TTree *newT = T->CloneTree(-1,
"fast");
514 obj->Write(obj->GetName(),TObject::kSingleKey);
518 adir->SaveSelf(kTRUE);
530 Bool_t isGrid = (! sPattern.IsNull());
532 if ( sOutDir.IsNull() ) {
534 TString data = sPath(TRegexp(
"/data/"));
535 TString year = sPath(TRegexp(
"/20[0-9][0-9]/"));
536 TString period = sPath(TRegexp(
"/LHC[0-9][0-9][a-z]"));
539 TString pass = AliAnalysisMuonUtility::GetPassName(path);
540 if ( pass.IsNull() ) pass = AliAnalysisMuonUtility::GetPassName(pattern);
541 sOutDir = data+year+period+pass;
542 sOutDir.ReplaceAll(
"//",
"/");
543 sOutDir.Remove(TString::kTrailing,
'/');
544 sOutDir.Remove(TString::kLeading,
'/');
546 else sOutDir = sPath;
547 sOutDir.Remove(TString::kTrailing,
'/');
548 sOutDir.Remove(TString::kLeading,
'/');
551 TGridResult* res = 0x0;
554 if ( ! gGrid ) TGrid::Connect(
"alien://");
555 res = gGrid->Query(path,pattern);
558 if (
gSystem->Exec(
"which curl &> /dev/null") == 0 ) hasCurl = kTRUE;
563 ofstream outFile(localFileList);
566 Bool_t overwrite = kFALSE;
567 for (
Int_t irun=0; irun<rl->GetEntries(); irun++ ) {
568 TString run =
static_cast<TObjString*
>(rl->At(irun))->String();
569 TString dest = Form(
"%s/%09i/QAresults.root",sOutDir.Data(),run.Atoi());
571 if (
gSystem->AccessPathName(destDir.Data()) )
ExecCommand(Form(
"mkdir -p %s",destDir.Data()),kFALSE);
574 if (
gSystem->AccessPathName(dest) == 0 ) {
577 cout <<
"Local file " << dest.Data() <<
" already exist: overwrite? [y/n/ya/na (a=use decision for all)]" << endl;
579 if ( decision.EndsWith(
"a") ) prompt = kFALSE;
580 if ( decision.BeginsWith(
"y") ) overwrite = kTRUE;
581 else overwrite = kFALSE;
583 copyFile = overwrite;
588 for (
Int_t ifile=0; ifile<res->GetEntries(); ifile++ ) {
589 TString inFilename = res->GetKey(ifile,
"turl");
590 if ( inFilename.Contains(run.Data()) ) {
595 if ( src.IsNull() ) {
596 AliWarning(Form(
"Cannot find output for run %s",run.Data()));
600 TFile* outFile = TFile::Open(dest,
"RECREATE");
601 TFile* inFile = TFile::Open(src);
603 TDirectory* dir =
static_cast<TDirectory*
>(inFile->Get(directory));
608 else isFileOk = kFALSE;
614 src = Form(
"http://aliqamu.web.cern.ch/aliqamu/%s",dest.Data());
618 Int_t cmdOut =
gSystem->Exec(Form(
"curl -o %s %s",dest.Data(),src.Data()));
619 isFileOk = ( cmdOut == 0 );
621 else isFileOk = TFile::Cp(src.Data(),dest.Data());
625 if ( isFileOk ) outFile <<
gSystem->pwd() <<
"/" << dest.Data() << endl;
637 TString baseNames[3] = {
"Chamber",
"RPC",
"Board"};
638 TString base = baseNames[itype] +
"Eff";
641 AliWarning(
"Please specify RPC");
644 base += Form(
"InRPC%i",irpc);
664 for (
Int_t ich=0; ich<nCh; ich++ ) {
667 TCanvas* can =
new TCanvas(canName.Data(),canName.Data(),25*ich,25*ich,width,height);
668 can->Divide(nColumns,nRows,0,0);
671 for (
Int_t idetelem=0; idetelem<nDetEl; idetelem++ ) {
675 Int_t detElemId = idetelem;
680 TLegend* leg =
new TLegend(0.2,0.15,0.8,0.4);
681 leg->SetHeader(title.Data());
682 for (
Int_t icount=0; icount<2; icount++ ) {
684 gr->SetLineColor(icount+1);
685 gr->SetMarkerColor(icount+1);
686 gr->SetMarkerStyle(24+2*icount);
687 gr->GetYaxis()->SetRangeUser(minEff,maxEff);
691 gr->Draw(icount==0?
"ap":
"p");
692 TString legTitle = ( icount==0 ) ?
"bending plane" :
"non-bending plane";
693 leg->AddEntry(gr,legTitle.Data(),
"lp");
694 if ( maxNsigmaOutliers > 0. ) {
696 outliers->SetLineColor(6+icount);
697 outliers->SetMarkerColor(6+icount);
698 outliers->SetMarkerStyle(20+2*icount);
699 outliers->SetLineWidth(2);
701 legTitle.ReplaceAll(
"plane",
"outliers");
702 leg->AddEntry(outliers,legTitle.Data(),
"lp");
716 AliWarning(
"This function is valid only for itype 1 and 2");
720 TString baseNames[3] = {
"Chamber",
"RPC",
"Board"};
721 TString base = baseNames[itype] +
"Stat";
724 AliWarning(
"Please specify RPC");
727 base += Form(
"InRPC%i",irpc);
740 for (
Int_t ich=0; ich<nCh; ich++ ) {
742 TH1* sumHistos = 0x0;
743 for (
Int_t idetelem=0; idetelem<nDetEl; idetelem++ ) {
744 Int_t detElemId = idetelem;
747 histos[idetelem]->SetName(Form(
"%s_stat",histos[idetelem]->GetName()));
748 histos[idetelem]->SetStats(0);
749 if ( sumHistos ) sumHistos->Add(histos[idetelem]);
750 else sumHistos =
static_cast<TH1*
>(histos[idetelem]->Clone(
"sumHistos"));
754 TCanvas* can =
new TCanvas(canName.Data(),canName.Data(),25*ich,25*ich,width,height);
755 can->Divide(nColumns,nRows,0,0);
756 for (
Int_t idetelem=0; idetelem<nDetEl; idetelem++ ) {
760 Int_t detElemId = idetelem;
763 TLegend* leg =
new TLegend(0.2,0.65,0.8,0.9);
764 leg->SetHeader(title.Data());
766 gr->SetHistogram(static_cast<TH1F*>(histos[idetelem]));
768 gr->SetMarkerStyle(24);
769 gr->SetMarkerSize(0.5);
770 gr->GetYaxis()->SetRangeUser(minY,maxY);
771 gr->GetYaxis()->SetTitle(Form(
"Tracks in %s / Sum of tracks of %ss in %s",baseNames[itype].
Data(),baseNames[itype].
Data(),baseNames[itype-1].
Data()));
776 if ( maxNsigmaOutliers > 0. ) {
778 outliers->SetLineColor(6);
779 outliers->SetMarkerColor(6);
780 outliers->SetMarkerStyle(20);
781 outliers->SetLineWidth(2);
783 legTitle =
"outliers";
784 leg->AddEntry(outliers,legTitle.Data(),
"lp");
799 Int_t colors[] = {kBlack, kRed, kSpring, kTeal, kBlue, kViolet, kMagenta, kOrange, kGray};
800 Int_t ncolors =
sizeof(colors)/
sizeof(colors[0]);
802 Int_t itype = ( perRPC ) ? AliMUONTriggerEfficiencyCells::kHslatCount : AliMUONTriggerEfficiencyCells::kHboardCount;
803 Int_t countTypes[2] = {AliMUONTriggerEfficiencyCells::kBendingEff,AliMUONTriggerEfficiencyCells::kNonBendingEff};
808 condTitle.SetOwner();
816 while ( (trigOut = static_cast<AliTrigChEffOutput*>(next())) ) {
827 for (
Int_t iplane=0; iplane<8; iplane++ ) {
828 effGraphs[iplane].SetOwner();
832 effMapList.SetOwner();
833 for (
Int_t icond=0; icond<nConditions; icond++ ) {
837 AliMUONTriggerEfficiencyCells* effMap =
new AliMUONTriggerEfficiencyCells(effList);
838 effMapList.Add(effMap);
839 titles += Form(
"%s,",condTitle.At(icond)->GetName());
841 for (
Int_t ich=0; ich<4; ich++ ) {
842 TString currName = effMap->GetHistoName(itype,AliMUONTriggerEfficiencyCells::kAllTracks,ich);
843 TH1* histoDen =
static_cast<TH1*
>(effMap->GetHistoList()->FindObject(currName.Data()));
844 for (
Int_t icount=0; icount<2; icount++ ) {
845 Int_t iplane = 4*icount+ich;
847 if ( histoDen->GetEntries() > 0 ) {
848 currName = effMap->GetHistoName(itype,countTypes[icount],ich);
849 TH1* histoNum =
static_cast<TH1*
>(effMap->GetHistoList()->FindObject(currName.Data()));
852 effGraphs[iplane].AddAtAndExpand(gr,icond);
856 AliWarning(Form(
"No entries in count %i and ch %i for %s\n",icount,ich,condTitle.At(icond)->GetName()));
862 titles.Remove(TString::kTrailing,
',');
866 TString canName = Form(
"EffSyst_%s",trigOut->GetName());
867 Int_t pos = 25*(imerged+1);
868 TCanvas* can =
new TCanvas(canName.Data(),canName.Data(),pos,pos,1200,800);
869 can->Divide(4,2,0,0);
871 for (
Int_t icount=0; icount<2; icount++ ) {
872 for (
Int_t ich=0; ich<4; ich++ ) {
873 Int_t iplane = 4*icount+ich;
877 TLegend* leg =
new TLegend(0.15,0.7,0.9,0.9);
878 leg->SetHeader(trigOut->
GetHistoName(-1,icount,ich,-1,-1,-1));
880 for (
Int_t icond=1; icond<nConditions; icond++ ) {
881 if ( isEmpty[icond] == 1 )
continue;
882 TH1* histo =
new TH1D(Form(
"syst_%s_%s_plane%i_ch%i",trigOut->GetName(),condTitle[icond]->GetName(),icount,11+ich),
"",200,-0.1,0.1);
883 histo->GetXaxis()->SetTitle(
"Eff.-(ref.Eff.)");
884 histo->GetYaxis()->SetTitle(
"1/#sigma^{2}");
888 for (
Int_t ipt=0; ipt<gr->GetN(); ipt++ ) {
889 gr->GetPoint(ipt,xpt,ypt);
891 Double_t invErr2 = ( err > 0. ) ? 1./(err*err) : 0.;
892 grRef->GetPoint(ipt,xref,yref);
895 histo->Fill(diff,invErr2);
899 sumHisto =
static_cast<TH1*
>(histo->Clone(Form(
"syst_%s_plane%i_ch%i",trigOut->GetName(),icount,11+ich)));
900 sumHisto->SetLineColor(1);
902 leg->AddEntry(sumHisto,
"All systematics",
"l");
904 else sumHisto->Add(histo);
905 Int_t icolor = ( icond < ncolors ) ? colors[icond] : 20+icond;
906 histo->SetLineColor(icolor);
908 leg->AddEntry(histo,condTitle[icond]->GetName(),
"l");
915 canName = Form(
"TriggerEff_3outOf4_syst_%s",trigOut->GetName());
917 TCanvas* canSyst =
new TCanvas(canName.Data(),canName.Data(),pos,pos,600,600);
919 TLegend* leg =
new TLegend(0.15,0.7,0.9,0.4);
921 TH1* histo[nConditions];
922 for (
Int_t icond=0; icond<nConditions; icond++ ) {
923 if ( isEmpty[icond] == 1 )
continue;
924 histo[icond] =
new TH1D(Form(
"TriggerEff_syst_%s_%s",condTitle[icond]->GetName(),trigOut->GetName()),
"Dispersion of trigger probability (3/4)",200,-0.1,0.1);
925 histo[icond]->GetXaxis()->SetTitle(
"Trig. prob. - (ref. trig. prob)");
926 histo[icond]->GetYaxis()->SetTitle(
"1/#sigma^{2}");
929 for (
Int_t ipt=0; ipt<
nDE; ipt++ ) {
931 for (
Int_t icond=0; icond<nConditions; icond++ ) {
932 if ( isEmpty[icond] == 1 )
continue;
933 Double_t trigProb = 1., trigProbErr2 = 0.;
934 for (
Int_t icount=0; icount<2; icount++ ) {
935 for (
Int_t ich=0; ich<4; ich++ ) {
936 Int_t iplane = 4*icount+ich;
938 gr->GetPoint(ipt,xpt,ypt);
940 effErr[ich] =
GetError(gr->GetErrorYlow(ipt),gr->GetErrorYhigh(ipt));
945 trigProbErr2 += effErr34*effErr34;
949 refTrigProb = trigProb;
953 Double_t invErr2 = ( trigProbErr2>0. ) ? 1./trigProbErr2 : 0.;
954 histo[icond]->Fill(trigProb-refTrigProb,invErr2);
959 for (
Int_t icond=0; icond<nConditions; icond++ ) {
960 if ( isEmpty[icond] == 1 )
continue;
961 TString title = ( icond == 0 ) ?
"All systematics" : condTitle[icond]->GetName();
962 Int_t icolor = ( icond < ncolors ) ? colors[icond] : 20+icond;
963 histo[icond]->SetLineColor(icolor);
964 histo[icond]->Draw((icond == 0)?
"":
"same");
965 leg->AddEntry(histo[icond],title.Data(),
"l");
966 if ( icond>0 ) histo[0]->Add(histo[icond]);
979 if ( gROOT->IsBatch() ) prompt = kFALSE;
982 cout << command.Data() <<
" ? [y/n]" << endl;
987 if ( decision ==
"y" ) {
988 cout <<
"Executing: " << command.Data() << endl;
1008 Int_t nChanges = par[0];
1010 Int_t matchChange = -1;
1011 for (
Int_t iknot=0; iknot<nChanges; iknot++ ) {
1012 Int_t iparChange = 2*(iknot+1);
1013 Double_t diff = xx - par[iparChange];
1014 if ( diff >= 0. && diff < matchDiff ) {
1016 matchChange = iparChange;
1019 if ( matchChange >= 0 ) val = par[matchChange+1];
1027 TH1* statHisto = 0x0;
1033 TList* effHistoList = 0x0;
1034 while ( (effHistoList = static_cast<TList*>(next()) ) ) {
1035 UInt_t run = effHistoList->GetUniqueID();
1036 if ( run < uFirstRun || run > uLastRun )
continue;
1039 if ( statHisto ) statHisto->Add(histo);
1040 else statHisto =
static_cast<TH1*
>(histo->Clone(
"tmpStatHisto"));
1043 if ( ! statHisto )
return 0.;
1048 Int_t excludeBoardsHalf[] = {1, 17, 39, 61, 77, 93,109,
1049 16, 38, 60, 76, 92, 108, 117,
1050 110, 111, 112, 113, 114, 115, 116};
1051 Int_t nExcludedHalf =
sizeof(excludeBoardsHalf)/
sizeof(excludeBoardsHalf[0]);
1052 for (
Int_t ibin=1; ibin<=statHisto->GetNbinsX(); ibin++ ) {
1054 for (
Int_t iexcl=0; iexcl<nExcludedHalf; iexcl++ ) {
1055 if ( ibin == excludeBoardsHalf[iexcl] || ibin == excludeBoardsHalf[iexcl]+117 ) {
1060 if ( skip )
continue;
1061 statPerDE += statHisto->GetBinContent(ibin);
1066 statPerDE = statHisto->Integral();
1067 nDe = (
Double_t)statHisto->GetNbinsX();
1069 statPerDE = nDe > 0. ? statPerDE/nDe : -1.;
1079 Int_t itrackSel =
static_cast<TObjString*
>(condition->At(3))->String().Atoi();
1080 Int_t imatch =
static_cast<TObjString*
>(condition->At(4))->String().Atoi();
1081 Int_t imethod =
static_cast<TObjString*
>(condition->At(5))->String().Atoi();
1083 return trigOut->
GetEffHistoList(condition->At(0)->GetName(),condition->At(1)->GetName(),condition->At(2)->GetName(),itrackSel,imatch,imethod);
1090 return TMath::Max(errLow,errHigh);
1098 return static_cast<TH1*
>(effHistoList->At(ihisto));
1108 TH1F* hRunChangeCount =
new TH1F(
"runChangeCount",
"Number of RPCs changing efficiency per run",nRuns,-0.5,-0.5+(
Double_t)nRuns);
1109 hRunChangeCount->SetXTitle(
"Run num.");
1110 hRunChangeCount->SetYTitle(
"Num. of RPCs with change in eff.");
1111 for (
Int_t irun=0; irun<nRuns; irun++ ) {
1112 hRunChangeCount->GetXaxis()->SetBinLabel(irun+1,Form(
"%i",
GetRunNumber(irun)));
1117 Int_t nCanvas = perRPC ? 4 : 18;
1120 for (
Int_t irpc=0; irpc<18; irpc++ ) {
1123 Int_t firstDetEl = perRPC ? irpc : 0;
1124 Int_t lastDetEl = perRPC ? irpc : boards.GetSize()-1;
1126 for (
Int_t ich=0; ich<4; ich++ ) {
1127 Int_t ican = perRPC ? ich : irpc;
1128 TCanvas* can =
static_cast<TCanvas*
>(canList.At(ican));
1130 TString canName = perRPC ? Form(
"testRanges_ch%i",11+ich) : Form(
"testRanges_RPC%i",irpc);
1131 can =
new TCanvas(canName.Data(),canName.Data(),10*ich,10*ich,1200,800);
1132 can->Divide(6,3,0,0);
1133 can->SetMargin(0.,0.,0.,0.);
1134 canList.AddAt(can,ican);
1137 for (
Int_t idetel=firstDetEl; idetel<=lastDetEl; idetel++ ) {
1138 Int_t currDE = ( perRPC ) ? idetel : boards[idetel];
1142 trendGraph->GetYaxis()->SetRangeUser(minEff,maxEff);
1145 gPad->SetTicks(1,1);
1146 gPad->SetMargin(0.08,0.,0.08,0.);
1147 TString drawOpt = ( gPad->GetListOfPrimitives()->GetEntries() == 0 ) ?
"ap" :
"p";
1149 TString legendName = Form(
"%s_%i",can->GetName(),currDE);
1150 TLegend* leg =
static_cast<TLegend*
>(gPad->GetListOfPrimitives()->FindObject(legendName.Data()));
1152 leg =
new TLegend(0.2,0.15,0.8,0.4);
1153 leg->SetHeader(Form(
"%s %i",perRPC?
"RPC":
"Board",currDE));
1154 leg->SetName(legendName.Data());
1158 Int_t icolor = ich+1;
1159 trendGraph->SetLineColor(icolor);
1160 trendGraph->SetMarkerColor(icolor);
1161 trendGraph->SetMarkerStyle(24+ich);
1162 TF1* func =
static_cast<TF1*
>(trendGraph->GetListOfFunctions()->At(0));
1164 func->SetLineWidth(2);
1165 func->SetLineColor(icolor);
1168 trendGraph->GetXaxis()->SetLabelSize(0.07);
1169 trendGraph->SetTitle(
"");
1171 trendGraph->Draw(drawOpt.Data());
1172 leg->AddEntry(trendGraph,Form(
"Chamber %i",11+ich),
"lp");
1174 for (
Int_t ichange=2; ichange<range.GetSize(); ichange++ ) {
1176 if ( ichange%2 == 1 )
continue;
1177 Int_t runIdx = range[ichange];
1179 TLine* line =
new TLine(runIdx,minEff,runIdx,maxEff);
1180 line->SetLineStyle(2);
1185 hRunChangeCount->Fill(runIdx);
1186 if ( hRunChangeCount->GetBinContent(runIdx+1) == 1 ) {
1187 TString infoMsg = Form(
"Efficiency change in %i triggered by ch %i RPC %i",
GetRunNumber(runIdx),11+ich,irpc);
1188 if ( ! perRPC ) infoMsg += Form(
" Board %i",currDE);
1189 AliInfo(infoMsg.Data());
1198 TArrayI runChangeClust(nRuns);
1201 for (
Int_t irun=0; irun<=nRuns; irun++ ) {
1202 if ( irun == nRuns || hRunChangeCount->GetBinContent(irun+1) == 0 ) {
1203 if ( sumWgt > 0. ) {
1204 Int_t averageRun = TMath::Nint(sumWgtRun / sumWgt);
1205 AliDebug(2,Form(
"Average run: %i => %i\n",averageRun,
GetRunNumber(averageRun)));
1206 runChangeClust[averageRun]++;
1211 if ( irun == nRuns )
break;
1213 AliDebug(2,Form(
"irun %i => %i: wgt %g",irun,
GetRunNumber(irun),hRunChangeCount->GetBinContent(irun+1)));
1216 Double_t wgt = hRunChangeCount->GetBinContent(irun+1);
1217 if ( forcedChanges ) {
1218 for (
Int_t ichange=0; ichange<forcedChanges->GetSize(); ichange++ ) {
1219 if (
GetRunNumber(irun) == forcedChanges->At(ichange) ) wgt *= 10.;
1226 TCanvas* summaryCan =
new TCanvas(
"effChangeSummary",
"effChangeSummary",50,50,600,600);
1227 summaryCan->SetLogy();
1228 hRunChangeCount->GetXaxis()->LabelsOption(
"v");
1229 hRunChangeCount->Draw();
1234 for (
Int_t irun=1; irun<nRuns; irun++ ) {
1235 if ( runChangeClust[irun] > 0 ) {
1241 runRanges.Set(ientry);
1254 if ( forcedChanges ) {
1255 forcedChangesBin.Set(forcedChanges->GetSize());
1256 for (
Int_t ichange=0; ichange<forcedChanges->GetSize(); ichange++ ) {
1258 if ( idx >= 0 ) forcedChangesBin[nForced++] = (
Double_t)idx;
1259 else AliWarning(Form(
"Cannot find run %i\n",forcedChanges->At(ichange)));
1264 Int_t minNormChi2Step = -1;
1270 for (
Int_t istep=0; istep<maxNRanges; istep++ ) {
1271 Int_t nPars = 2*(istep+1);
1272 Double_t xMin = trendGraph->GetXaxis()->GetXmin();
1273 Double_t xMax = trendGraph->GetXaxis()->GetXmax();
1275 func->FixParameter(0,istep);
1276 for (
Int_t ipar=1; ipar<nPars; ipar++ ) {
1284 func->SetParameter(ipar,val);
1285 if ( ipar%2 == 0 ) func->SetParLimits(ipar,xMin,xMax);
1288 TFitResultPtr fitResult = trendGraph->Fit(func,fitOpt.Data());
1291 if ( forcedChanges ) {
1292 Bool_t hasFixedPars = kFALSE;
1293 for (
Int_t iforced=0; iforced<nForced; iforced++ ) {
1294 for (
Int_t jstep=0; jstep<istep; jstep++ ) {
1295 Int_t ipar = 2*(jstep+1);
1296 if ( TMath::Abs(forcedChangesBin[iforced]-func->GetParameter(ipar)) > 2. )
continue;
1297 func->FixParameter(ipar,forcedChangesBin[iforced]);
1298 hasFixedPars = kTRUE;
1301 if ( hasFixedPars ) fitResult = trendGraph->Fit(func,fitOpt.Data());
1309 if ( normChi2 < minNormChi2 ) {
1310 minNormChi2 = normChi2;
1311 minNormChi2Step = istep;
1314 if ( normChi2 < chi2Cut )
break;
1320 trendGraph->GetListOfFunctions()->Add(func->Clone());
1326 Int_t nPoints = nSteps+1;
1329 for (
Int_t ipar=0; ipar<func->GetNpar(); ipar++ ) {
1330 Int_t istep = ipar/2;
1331 if ( ipar%2 == 0 ) parRunIdx[istep] = func->GetParameter(ipar);
1332 else parEff[istep] = func->GetParameter(ipar);
1336 TMath::Sort(nPoints,parRunIdx.GetArray(),sortIdx.GetArray(),kFALSE);
1338 runRanges.Set(2*nPoints);
1341 for (
Int_t ipoint=1; ipoint<nPoints; ipoint++ ) {
1342 Double_t deltaEff = TMath::Abs(parEff[sortIdx[ipoint]]-parEff[sortIdx[ipoint-1]]);
1344 if ( deltaEff < minEffVariation ) {
1345 AliWarning(Form(
"Efficiency variation for %s is %g => consider uniform",trendGraph->GetName(),deltaEff));
1348 Int_t runChangeIdx = TMath::Nint(parRunIdx[sortIdx[ipoint]]);
1349 AliDebug(1,Form(
"Change run: %s => %g => %i %i",trendGraph->GetName(),parRunIdx[sortIdx[ipoint]],runChangeIdx,
GetRunNumber(runChangeIdx)));
1350 runRanges[irun++] = returnIndex ? runChangeIdx-1 :
GetRunNumber(runChangeIdx-1);
1351 runRanges[irun++] = returnIndex ? runChangeIdx :
GetRunNumber(runChangeIdx);
1353 Int_t lastPt = trendGraph->GetN()-1;
1354 runRanges[irun++] = returnIndex ? lastPt :
GetRunNumber(lastPt);
1355 runRanges.Set(irun);
1358 AliWarning(Form(
"Fit did not converge for %s (minimum chi2 %g for step %i)",trendGraph->GetName(),minNormChi2,minNormChi2Step));
1373 TString identifier = Form(
"/%s/%s/%s/",condition->At(0)->GetName(),condition->At(1)->GetName(),condition->At(2)->GetName());
1374 Int_t itrackSel =
static_cast<TObjString*
>(condition->At(3))->String().Atoi();
1375 Int_t imatch =
static_cast<TObjString*
>(condition->At(4))->String().Atoi();
1376 Int_t imethod =
static_cast<TObjString*
>(condition->At(5))->String().Atoi();
1377 TString objName = trigOut->
GetHistoName(itype, icount, ichamber, itrackSel, imatch, imethod);
1378 identifier += objName;
1386 for (
Int_t ipt=0; ipt<
fOutputs->GetEntriesFast(); ipt++ ) {
1388 if ( run == runNumber )
return ipt;
1399 outliers->SetHistogram(static_cast<TH1F*>(graph->GetHistogram()->Clone(Form(
"%s_outliers",graph->GetHistogram()->GetName()))));
1401 if ( graph->GetListOfFunctions()->GetEntries() == 0 ) graph->Fit(
"pol0",
"Q0");
1402 TF1* func =
static_cast<TF1*
>(graph->GetListOfFunctions()->At(0));
1406 for (
Int_t ipt=0; ipt<graph->GetN(); ipt++ ) {
1407 graph->GetPoint(ipt,xpt,ypt);
1408 Double_t diff = ypt - func->Eval(xpt);
1409 Double_t err = ( diff > 0. ) ? graph->GetErrorYlow(ipt) : graph->GetErrorYhigh(ipt);
1410 if ( err < 0. || TMath::Abs(diff)/err > maxNsigmas )
continue;
1411 outliers->RemovePoint(ipt-nremoved);
1422 if ( ipt < 0 || ipt >=
fOutputs->GetEntriesFast() )
return -1;
1423 return fOutputs->UncheckedAt(ipt)->GetUniqueID();
1433 if (
gSystem->AccessPathName(sRunList) || sRunList.EndsWith(
".root") ) {
1434 sRunList.ReplaceAll(
",",
" ");
1435 if ( sRunList.IsDigit() ) {
1436 TObjArray* arr = sRunList.Tokenize(
" ");
1437 for (
Int_t iarr=0; iarr<arr->GetEntries(); iarr++ ) {
1438 rl->Add(
new TObjString(arr->At(iarr)->GetName()));
1444 ifstream inFile(sRunList.Data());
1446 while ( ! inFile.eof() ) {
1447 currLine.ReadLine(inFile);
1448 TString currRun = AliAnalysisMuonUtility::GetRunNumberAsString(currLine);
1449 if ( ! currRun.IsNull() ) rl->Add(
new TObjString(currRun));
1465 for (
Int_t icond=0; icond<nConditions; icond++ ) {
1469 refCondition = condition;
1470 title = condition->GetName();
1472 for (
Int_t ic=0; ic<condition->GetEntriesFast(); ic++ ) {
1473 TString currCond =
static_cast<TObjString*
>(condition->UncheckedAt(ic))->String();
1474 TString refCond =
static_cast<TObjString*
>(refCondition->UncheckedAt(ic))->String();
1475 if ( currCond == refCond )
continue;
1477 if ( ic == 3 ) add = trigOut->
GetHistoName(-1,-1,-1,currCond.Atoi(),-1,-1);
1478 else if ( ic == 4 ) add = trigOut->
GetHistoName(-1,-1,-1,-1,currCond.Atoi(),-1);
1479 else if ( ic == 5 ) add = trigOut->
GetHistoName(-1,-1,-1,-1,-1,currCond.Atoi());
1480 title += Form(
"_%s",add.Data());
1482 title.Remove(TString::kLeading,
'_');
1483 title.ReplaceAll(
",",
"|");
1484 condTitles.AddAt(
new TObjString(title),icond);
1494 Int_t itrackSel =
static_cast<TObjString*
>(condition->At(3))->String().Atoi();
1495 Int_t imatch =
static_cast<TObjString*
>(condition->At(4))->String().Atoi();
1496 Int_t imethod =
static_cast<TObjString*
>(condition->At(5))->String().Atoi();
1497 TString objName = trigOut->
GetHistoName(itype, icount, ichamber, itrackSel, imatch, imethod);
1498 return static_cast<TH1*
>(trigOut->GetSum(condition->At(0)->GetName(),condition->At(1)->GetName(),condition->At(2)->GetName(),objName));
1506 if ( idetelem < 0 && ichamber >=0 ) idetelem = 11+ichamber;
1508 TH1* outHisto = 0x0;
1511 TList* effHistoList = 0x0;
1513 while ( (effHistoList = static_cast<TList*>(next()) ) ) {
1518 TString outName = Form(
"histo_type%i_count%i_ch%i_",itype,icount,11+ichamber);
1520 outName += Form(
"%i_trend",idetelem);
1522 outHisto->SetDirectory(0);
1523 outHisto->GetXaxis()->SetTitle(
"Run num.");
1525 UInt_t run = effHistoList->GetUniqueID();
1526 outHisto->GetXaxis()->SetBinLabel(ibin,Form(
"%u",run));
1527 TH1* histo =
GetHisto(effHistoList,itype,icount,ichamber);
1528 Int_t currBin = histo->GetXaxis()->FindBin(idetelem);
1529 outHisto->SetBinContent(ibin,histo->GetBinContent(currBin));
1530 outHisto->SetBinError(ibin,histo->GetBinError(currBin));
1532 if ( outHisto ) outHisto->GetXaxis()->LabelsOption(
"v");
1541 AliWarning(
"Chose either bending plane, non-bending plane or both planes");
1544 TH1* histoNum =
GetTrend(itype,icount,ichamber,idetelem);
1548 histoNum->SetStats(kFALSE);
1549 graph->SetHistogram(static_cast<TH1F*>(histoNum));
1550 graph->GetYaxis()->SetTitle(
"Efficiency");
1551 graph->SetMarkerSize(0.5);
1566 for (
Int_t jch=-1; jch<4; jch++ ) {
1569 for (
Int_t ich=0; ich<4; ich++ ) {
1570 Double_t currEff = ( ich == jch ) ? 1.-eff[ich] : eff[ich];
1572 Double_t relErr = ( currEff>0. ) ? effErr[ich]/currEff : 0.;
1573 prodErr2 += relErr*relErr;
1575 binomialEff += prodEff;
1576 sumErr2 += prodEff*prodEff*prodErr2;
1578 probErr = TMath::Sqrt(sumErr2);
1587 AliError(
"You first need to merge efficiency objects with MergeOutput");
1598 if ( runRanges.GetSize()%2 == 1 ) {
1599 AliError(
"Run ranges expected in the form: start_period1,end_period1,start_period2,end_period2... => even number expected");
1605 Int_t nRanges = mergedRanges.GetSize()/2;
1614 TList* effHistoList = 0x0;
1615 for (
Int_t irange=0; irange<nRanges; irange++ ) {
1616 Int_t firstRun = mergedRanges[2*irange];
1617 Int_t lastRun = mergedRanges[2*irange+1];
1628 TFileMerger fileMerger;
1629 while ( (effHistoList = static_cast<TList*>(next()) ) ) {
1630 UInt_t run = effHistoList->GetUniqueID();
1631 if ( run < uFirstRun || run > uLastRun )
continue;
1632 filename = effHistoList->GetName();
1633 if ( firstRun == lastRun )
continue;
1634 fileMerger.AddFile(filename.Data(),kFALSE);
1637 TString sRange = Form(
"%i_%i",firstRun,lastRun);
1638 TString mergedFilename = Form(
"mergedTrigEff_runs_%s.root",sRange.Data());
1640 if ( firstRun == lastRun ) TFile::Cp(filename.Data(),mergedFilename.Data(),kFALSE);
1642 fileMerger.OutputFile(mergedFilename.Data());
1646 trigOut->SetName(sRange.Data());
1655 if ( averageStatError <= 0. || averageStatError >= 1. )
return runRanges;
1663 Double_t averageStatNeeded = effForStatCalc*(1.-effForStatCalc)/(averageStatError*averageStatError);
1665 AliInfo(Form(
"Average statistics needed to reach precision of %g : %g",averageStatError,averageStatNeeded));
1667 Int_t nRanges = runRanges.GetSize()/2;
1671 for (
Int_t irange=0; irange<nRanges; irange++ ) {
1673 fullStat += averageStat[irange];
1676 TArrayI mergedRanges(runRanges.GetSize());
1678 mergedRanges[imerged++] = runRanges[0];
1679 Double_t mergedAverageStat = 0., remainingStat = fullStat;
1680 for (
Int_t irange=0; irange<nRanges; irange++ ) {
1681 Int_t istart = 2*irange;
1682 Int_t iend = istart+1;
1683 mergedAverageStat += averageStat[irange];
1684 remainingStat -= averageStat[irange];
1686 AliInfo(Form(
"%i - %i => stat %g",runRanges[2*irange],runRanges[2*irange+1],averageStat[irange]));
1688 if ( ( mergedAverageStat >= averageStatNeeded && remainingStat >= averageStatNeeded ) || iend == runRanges.GetSize()-1 ) {
1689 mergedRanges[imerged++] = runRanges[iend];
1690 AliInfo(Form(
" merged range %i - %i => stat %g",mergedRanges[imerged-2],mergedRanges[imerged-1],mergedAverageStat));
1691 mergedAverageStat = 0.;
1692 Int_t nextRun = iend+1;
1693 if ( nextRun < runRanges.GetSize() ) mergedRanges[imerged++] = runRanges[nextRun];
1696 mergedRanges.Set(imerged);
1697 return mergedRanges;
1709 TString sCondition = Form(
"%s;%s;%s;%i;%i;%i",physSel,trigClassName,centrality,itrackSel,imatch,imethod);
1715 if ( foundCondition ) {
1717 if ( foundCondition == basicCondition )
return kFALSE;
1720 addCondition = foundCondition;
1724 AliInfo(
"Systematic condition already added");
1729 addCondition = sCondition.Tokenize(
";");
1730 addCondition->SetName(sCondition.Data());
1735 if ( basicCondition ) {
1736 AliInfo(Form(
"Changing current eff. condition: %s\n",basicCondition->GetName()));
1738 delete basicCondition;
1747 TIter next(tmpOutputs);
1748 TList* effHistiList = 0x0;
1749 while ( (effHistiList = static_cast<TList*>(next())) ) {
1772 return SetCondition(physSel, trigClassName, centrality, itrackSel, imatch, imethod, kTRUE);
1783 gSystem->ExpandPathName(filename);
1784 if (
gSystem->AccessPathName(filename.Data()) ) {
1785 AliWarning(Form(
"Cannot find %s",filename.Data()));
1788 if ( filename.EndsWith(
".root") )
return AddToList(filename.Data(),outputName);
1791 ifstream inFile(filename.Data());
1793 while ( ! inFile.eof() ) {
1794 currLine.ReadLine(inFile);
1795 if ( currLine.IsNull() )
continue;
1796 if (
gSystem->AccessPathName(currLine.Data()) )
continue;
1797 if ( !
AddToList(currLine.Data(), outputName) ) isOk = kFALSE;
1808 CopyLocally(runList,path,pattern,localFileList,outDir,directory);
1816 CopyLocally(runList,path,
"",localFileList,outDir,directory);
1826 if ( outCDBdir.Contains(
"://") && ! outCDBdir.BeginsWith(
"local") ) {
1827 AliError(
"A local directory is required to store the information");
1830 outCDBdir.ReplaceAll(
"local://",
"");
1831 if (
gSystem->AccessPathName(outCDBdir.Data()) ) {
1832 if ( !
ExecCommand(Form(
"mkdir -p %s",outCDBdir.Data()), kTRUE) ) {
1833 AliError(Form(
"Failed to create directory %s",outCDBdir.Data()));
1838 outCDB.Prepend(
"local://");
1840 AliCDBManager* mgr = AliCDBManager::Instance();
1841 if ( ! mgr->GetDefaultStorage() ) mgr->SetDefaultStorage(
"local://$ALICE_ROOT/OCDB");
1843 TString trigEffCDBdir =
"MUON/Calib/TriggerEfficiency";
1845 mgr->SetSpecificStorage(trigEffCDBdir.Data(),outCDB.Data());
1847 AliCDBStorage* specificStorage = mgr->GetSpecificStorage(trigEffCDBdir.Data());
1853 while ( (trigOut = static_cast<AliTrigChEffOutput*>(next())) ) {
1855 TString runRange = trigOut->GetName();
1866 TObjArray* currRange = runRange.Tokenize(
"_");
1867 Int_t firstRun =
static_cast<TObjString*
>(currRange->UncheckedAt(0))->String().Atoi();
1868 Int_t lastRun =
static_cast<TObjString*
>(currRange->UncheckedAt(1))->String().Atoi();
1872 for (
Int_t irun=0; irun<2; irun++ ) {
1873 Int_t runnr = ( irun == 0 ) ? firstRun : lastRun;
1874 specificStorage->QueryCDB(runnr);
1875 TObjArray* allIdsForRun = specificStorage->GetQueryCDBList();
1876 TIter nextId(allIdsForRun);
1878 while ((
id = dynamic_cast<AliCDBId*>(nextId()))) {
1880 Int_t foundFirst =
id->GetFirstRun();
1881 Int_t foundLast =
id->GetLastRun();
1882 Int_t version =
id->GetVersion();
1883 Int_t subversion =
id->GetSubVersion();
1884 TString locPath = Form(
"%s/%s/Run%d_%d_v%d_s%d.root",outCDBdir.Data(),path.Data(),foundFirst,foundLast,version,subversion);
1885 if ( !
gSystem->AccessPathName(locPath.Data()) ) {
1892 AliMUONTriggerEfficiencyCells* effMap =
new AliMUONTriggerEfficiencyCells(effList);
1893 AliMUONCDB::WriteToCDB(effMap,
"MUON/Calib/TriggerEfficiency", firstRun, lastRun,
"Measured efficiencies");
Counts per cathode histogram index.
Int_t GetIndexFromRun(UInt_t runNumber) const
TList * GetEffHistoList(TString physSel, TString trigClassNames, TString centrality, Int_t itrackSel, Int_t imatch, Int_t imethod)
void CompareMergedEfficiencies(const char *opt) const
void CopyDir(TDirectory *source) const
Double_t GetError(Double_t errLow, Double_t errHigh) const
tracks used for calculation
Bool_t CopyLocally(const char *runList, const char *path, const char *pattern, const char *localFileList, const char *outDir, const char *directory) const
Hit pattern from tracker track extrapolation.
Double_t GetThreeOfFour(TArrayD eff, TArrayD effErr, Double_t &probErr) const
TGraphAsymmErrors * GetTrendEff(Int_t itype, Int_t icount, Int_t ichamber, Int_t idetelem) const
TArrayI MergeRangesForStat(TArrayI runRanges, Double_t averageStatError, Bool_t excludePeriphericBoards=kTRUE) const
Counts per slat histogram index.
Int_t CompareEfficiencies(const char *sources, const char *titles, const char *opt, const char *canvasNameSuffix="") const
Bool_t SetResultsFromGrid(const char *runList, const char *path, const char *pattern, const char *localFileList="localFileList.txt", const char *outDir="", const char *directory="MTR_ChamberEffMap", const char *outputName="testMTRChamberEff")
UShort_t T(UShort_t m, UShort_t t)
TList * GetEffHistoList(AliTrigChEffOutput *trigOut, TObjArray *condition) const
Bool_t AddToList(const char *filename, const char *outputName)
TObjArray * fMergedOutputs
!<! List of conditions for trigger efficiency
virtual ~AliMTRChEffAnalysis()
Int_t CompareEfficiencyMethods(const char *source, const char *opt, const char *canvasNameSuffix="") const
Output for Trig chamber effieincy.
TArrayI GetHomogeneousRanges(Double_t chi2Cut=3, Int_t maxNRanges=4, Double_t minEffVariation=0.005, Bool_t perRPC=kTRUE, TArrayI *forcedChanges=0x0, Double_t minEff=0.85, Double_t maxEff=1.01)
Bool_t SetEffConditions(const char *physSel, const char *trigClassName, const char *centrality, Int_t itrackSel, Int_t imatch, Int_t imethod)
Output for Trig chamber effieincy.
void DrawStatContribution(Int_t itype, Int_t irpc, Double_t maxNsigmaOutliers=-1., Double_t minY=0., Double_t maxY=0.15) const
Double_t GetAverageStat(Int_t firstRun, Int_t lastRun, Int_t itype=AliTrigChEffOutput::kHboardEff, Bool_t excludePeriphericBoards=kTRUE) const
Bool_t SetOutList(const char *localFileList, const char *outputName)
TString GetIdentifier(AliTrigChEffOutput *trigOut, TObjArray *condition, Int_t itype, Int_t icount, Int_t ichamber) const
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)
TH1 * GetHisto(TList *effHistoList, Int_t itype, Int_t icount, Int_t ichamber) const
Bool_t SetCondition(const char *physSel, const char *trigClassName, const char *centrality, Int_t itrackSel, Int_t imatch, Int_t imethod, Bool_t isBasic)
Bool_t WriteMergedToOCDB(const char *outputCDB="CDB") const
Bool_t GetShortConditionTitles(AliTrigChEffOutput *trigOut, TObjArray &condTitles) const
TList * GetRunList(const char *runList) const
ClassImp(AliAnalysisTaskCRC) AliAnalysisTaskCRC
Int_t GetRunNumber(Int_t ipt) const
Bool_t HasMergedResults() const
Bool_t ExecCommand(TString command, Bool_t prompt) const
TArrayI BoardsInRPC(Int_t irpc) const
Double_t FitRangesFunc(Double_t *x, Double_t *par)
Counts per board histogram index.
void DrawEffTrend(Int_t itype, Int_t irpc, Double_t maxNsigmasOutliers=-1., Double_t minEff=0.8, Double_t maxEff=1.01) const
TObjArray * fConditions
!<! List of outputs
TGraphAsymmErrors * GetOutliers(TGraphAsymmErrors *graph, Double_t maxNsigmas=3.) const
Bool_t AddSystematicCondition(const char *physSel, const char *trigClassName, const char *centrality, Int_t itrackSel, Int_t imatch, Int_t imethod)
Bool_t SetResultsFromWeb(const char *runList, const char *path, const char *localFileList="localFileList.txt", const char *outDir="", const char *directory="MTR_ChamberEffMap", const char *outputName="testMTRChamberEff")
Bool_t DrawSystematicEnvelope(Bool_t perRPC=kFALSE) const
Bool_t MergeOutput(TArrayI runRanges, Double_t averageStatError=0.01, Bool_t isIndex=kFALSE)
TString GetHistoName(Int_t itype, Int_t icount, Int_t ichamber, Int_t itrackSel, Int_t imatch, Int_t imethod)
Bool_t SetDefaultEffConditions()
TH1 * GetSum(AliTrigChEffOutput *trigOut, TObjArray *condition, Int_t itype, Int_t icount, Int_t ichamber) const
TH1 * GetTrend(Int_t itype, Int_t icount, Int_t ichamber, Int_t idetelem) const