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));
122 TObjArray* condition =
static_cast<TObjArray*
>(
fConditions->At(0));
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;
221 TString srcs(sources);
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(
",");
227 TObjArray effMapList;
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(
"?");
242 TString cdbPath = dirRun->UncheckedAt(0)->GetName();
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 mgr->SetSpecificStorage(trigEffCDBdir.Data(),cdbPath.Data());
248 if ( runNum.IsNull() ) {
249 cout <<
"Please enter run number: " << endl;
252 else runNumber = runNum.Atoi();
253 mgr->SetRun(runNumber);
254 AliCDBEntry* cdbEntry = mgr->Get(trigEffCDBdir.Data());
258 effMap =
static_cast<AliMUONTriggerEfficiencyCells*
>(cdbEntry->GetObject()->Clone());
260 if ( ! effMap )
continue;
261 effMapList.Add(effMap);
272 TString sTitles(titles);
273 TObjArray* titleList = sTitles.Tokenize(
",");
277 Int_t nLists = effMapList->GetEntriesFast();
279 TString sCanvasNameSuffix(canvasNameSuffix);
280 if ( ! sCanvasNameSuffix.IsNull() && ! sCanvasNameSuffix.BeginsWith(
"_") ) sCanvasNameSuffix.Prepend(
"_");
282 Double_t xpt, ypt, xref, yref;
283 enum {kEff, kDiff, kPull};
287 TString yTitle =
"Eff.";
288 if ( sOpt.Contains(
"diff") ) {
290 yTitle =
"Eff. - (ref.Eff)";
292 else if ( sOpt.Contains(
"pull") ) {
294 yTitle =
"(Eff - (ref.Eff)) / err";
298 Bool_t needsLegend = ( nLists > 1 );
301 Int_t colors[] = {kBlack, kRed, kSpring, kTeal, kBlue, kViolet, kMagenta, kOrange, kGray};
302 Int_t ncolors =
sizeof(colors)/
sizeof(colors[0]);
304 Int_t hTypes[2] = {AliMUONTriggerEfficiencyCells::kHboardCount,AliMUONTriggerEfficiencyCells::kHslatCount};
305 Int_t countTypes[3] = {AliMUONTriggerEfficiencyCells::kBendingEff,AliMUONTriggerEfficiencyCells::kNonBendingEff,AliMUONTriggerEfficiencyCells::kBothPlanesEff};
307 TString currName =
"";
309 for ( Int_t itype=0; itype<2; itype++ ) {
310 TString xTitle = ( hTypes[itype] == AliMUONTriggerEfficiencyCells::kHslatCount ) ?
"RPC" :
"Board";
311 for ( Int_t icount=0; icount<3; icount++ ) {
313 for ( Int_t ich=0; ich<4; ich++ ) {
317 TGraphAsymmErrors* refGraph = 0x0;
318 for ( Int_t ilist=0; ilist<nLists; ilist++ ) {
319 TString currTitle = titleList->At(ilist)->GetName();
320 AliMUONTriggerEfficiencyCells* effMap =
static_cast<AliMUONTriggerEfficiencyCells*
>(effMapList->UncheckedAt(ilist));
321 currName = effMap->GetHistoName(hTypes[itype],AliMUONTriggerEfficiencyCells::kAllTracks,ich);
322 TH1* histoDen =
static_cast<TH1*
>(effMap->GetHistoList()->FindObject(currName.Data()));
323 currName = effMap->GetHistoName(hTypes[itype],countTypes[icount],ich);
324 TH1* histoNum =
static_cast<TH1*
>(effMap->GetHistoList()->FindObject(currName.Data()));
325 TGraphAsymmErrors* graph =
new TGraphAsymmErrors(histoNum,histoDen,
"e0");
326 currName = histoNum->GetName();
327 currName.ReplaceAll(
"Count",
"Eff");
328 currName.Append(Form(
"_%s",currTitle.Data()));
329 graph->SetName(currName.Data());
331 if ( iopt != kEff ) {
333 for ( Int_t ipt=0; ipt<graph->GetN(); ipt++ ) {
334 refGraph->GetPoint(ipt,xref,yref);
335 graph->GetPoint(ipt,xpt,ypt);
336 Double_t diff = ypt - yref;
337 if ( TMath::Abs(diff) > 1.e-4 ) nDiffs++;
338 if ( iopt == kDiff ) graph->SetPoint(ipt,xpt,diff);
339 else if ( iopt == kPull ) {
340 Double_t err =
GetError(graph->GetErrorYlow(ipt),graph->GetErrorYhigh(ipt));
341 Double_t pull = ( err > 0. ) ? diff/err : 0.;
342 graph->SetPoint(ipt,xpt,pull);
353 currName = graph->GetName();
354 currName.Remove(currName.Length()-currTitle.Length()-5);
355 currName += sCanvasNameSuffix;
356 can =
new TCanvas(currName.Data(),currName.Data(),20*ican,20*ican,600,600);
360 if ( needsLegend && ! leg ) {
361 leg =
new TLegend(0.35, 0.15, 0.65, 0.45);
362 if ( refGraph ) leg->SetHeader(Form(
"Ref.: %s",titleList->At(0)->GetName()));
366 Int_t icolor = ( ilist < ncolors ) ? colors[ilist] : 20+ilist;
367 graph->SetLineColor(icolor);
368 graph->SetMarkerColor(icolor);
369 graph->SetMarkerStyle(20+ilist);
370 graph->SetMarkerSize(0.5);
371 graph->GetXaxis()->SetTitle(xTitle.Data());
372 graph->GetYaxis()->SetTitle(yTitle.Data());
373 graph->Draw((gPad->GetListOfPrimitives()->GetEntries()==0)?
"ap":
"p");
374 if ( leg ) leg->AddEntry(graph,titleList->At(ilist)->GetName(),
"lp");
376 if (leg ) leg->Draw();
392 TObjArray* condition =
static_cast<TObjArray*
>(
fConditions->At(0));
395 TObjArray effMapList;
396 effMapList.SetOwner();
400 while ( (trigOut = static_cast<AliTrigChEffOutput*>(next())) ) {
402 AliMUONTriggerEfficiencyCells* effMap =
new AliMUONTriggerEfficiencyCells(effList);
403 effMapList.Add(effMap);
404 titles += Form(
"%s,",trigOut->GetName());
406 titles.Remove(TString::kTrailing,
',');
453 TDirectory *savdir = gDirectory;
454 TDirectory *adir = savdir->mkdir(source->GetName());
458 TIter nextkey(source->GetListOfKeys());
459 while ((key = (TKey*)nextkey())) {
460 const char *classname = key->GetClassName();
461 TClass *cl = gROOT->GetClass(classname);
463 if (cl->InheritsFrom(TDirectory::Class())) {
464 source->cd(key->GetName());
465 TDirectory *subdir = gDirectory;
469 }
else if (cl->InheritsFrom(TTree::Class())) {
470 TTree *T = (TTree*)source->Get(key->GetName());
472 TTree *newT = T->CloneTree(-1,
"fast");
476 TObject *obj = key->ReadObj();
478 obj->Write(obj->GetName(),TObject::kSingleKey);
482 adir->SaveSelf(kTRUE);
488 Bool_t
AliMTRChEffAnalysis::CopyLocally (
const char* runList,
const char* path,
const char* pattern,
const char* localFileList,
const char* outDir,
const char* directory )
const
491 TString sPattern(pattern);
492 TString sOutDir(outDir);
494 Bool_t isGrid = (! sPattern.IsNull());
496 if ( sOutDir.IsNull() ) {
498 TString data = sPath(TRegexp(
"/data/"));
499 TString year = sPath(TRegexp(
"/20[0-9][0-9]/"));
500 TString period = sPath(TRegexp(
"/LHC[0-9][0-9][a-z]"));
503 TString pass = AliAnalysisMuonUtility::GetPassName(path);
504 if ( pass.IsNull() ) pass = AliAnalysisMuonUtility::GetPassName(pattern);
505 sOutDir = data+year+period+pass;
506 sOutDir.ReplaceAll(
"//",
"/");
507 sOutDir.Remove(TString::kTrailing,
'/');
508 sOutDir.Remove(TString::kLeading,
'/');
510 else sOutDir = sPath;
511 sOutDir.Remove(TString::kTrailing,
'/');
512 sOutDir.Remove(TString::kLeading,
'/');
515 TGridResult* res = 0x0;
517 if ( ! gGrid ) TGrid::Connect(
"alien://");
518 res = gGrid->Query(path,pattern);
523 ofstream outFile(localFileList);
524 Bool_t allOk = kTRUE;
525 Bool_t prompt = kTRUE;
526 Bool_t overwrite = kFALSE;
527 for ( Int_t irun=0; irun<rl->GetEntries(); irun++ ) {
528 TString run =
static_cast<TObjString*
>(rl->At(irun))->String();
529 TString dest = Form(
"%s/%09i/QAresults.root",sOutDir.Data(),run.Atoi());
530 TString destDir =
gSystem->DirName(dest.Data());
531 if (
gSystem->AccessPathName(destDir.Data()) )
ExecCommand(Form(
"mkdir -p %s",destDir.Data()),kFALSE);
532 Bool_t copyFile = kTRUE;
533 Bool_t isFileOk = kTRUE;
534 if (
gSystem->AccessPathName(dest) == 0 ) {
536 TString decision =
"";
537 cout <<
"Local file " << dest.Data() <<
" already exist: overwrite? [y/n/ya/na (a=use decision for all)]" << endl;
539 if ( decision.EndsWith(
"a") ) prompt = kFALSE;
540 if ( decision.BeginsWith(
"y") ) overwrite = kTRUE;
541 else overwrite = kFALSE;
543 copyFile = overwrite;
548 for ( Int_t ifile=0; ifile<res->GetEntries(); ifile++ ) {
549 TString inFilename = res->GetKey(ifile,
"turl");
550 if ( inFilename.Contains(run.Data()) ) {
555 if ( src.IsNull() ) {
556 AliWarning(Form(
"Cannot find output for run %s",run.Data()));
560 TFile* outFile = TFile::Open(dest,
"RECREATE");
561 TFile* inFile = TFile::Open(src);
563 TDirectory* dir =
static_cast<TDirectory*
>(inFile->Get(directory));
568 else isFileOk = kFALSE;
574 src = Form(
"http://aliqamu.web.cern.ch/aliqamu/%s",dest.Data());
575 isFileOk = TFile::Cp(src.Data(),dest.Data());
579 if ( isFileOk ) outFile <<
gSystem->pwd() <<
"/" << dest.Data() << endl;
591 TString baseNames[3] = {
"Chamber",
"RPC",
"Board"};
592 TString base = baseNames[itype] +
"Eff";
595 AliWarning(
"Please specify RPC");
598 base += Form(
"InRPC%i",irpc);
618 for ( Int_t ich=0; ich<nCh; ich++ ) {
619 TString canName = base;
621 TCanvas* can =
new TCanvas(canName.Data(),canName.Data(),25*ich,25*ich,width,height);
622 can->Divide(nColumns,nRows,0,0);
625 for ( Int_t idetelem=0; idetelem<nDetEl; idetelem++ ) {
629 Int_t detElemId = idetelem;
633 TString
title = Form(
"%s %i",baseNames[itype].
Data(),detElemId);
634 TLegend* leg =
new TLegend(0.2,0.15,0.8,0.4);
635 leg->SetHeader(title.Data());
636 for ( Int_t icount=0; icount<2; icount++ ) {
637 TGraphAsymmErrors* gr =
GetTrendEff(itype, icount, ich, detElemId);
638 gr->SetLineColor(icount+1);
639 gr->SetMarkerColor(icount+1);
640 gr->SetMarkerStyle(24+2*icount);
641 gr->GetYaxis()->SetRangeUser(minEff,maxEff);
645 gr->Draw(icount==0?
"ap":
"p");
646 TString legTitle = ( icount==0 ) ?
"bending plane" :
"non-bending plane";
647 leg->AddEntry(gr,legTitle.Data(),
"lp");
648 if ( maxNsigmaOutliers > 0. ) {
649 TGraphAsymmErrors* outliers =
GetOutliers(gr,maxNsigmaOutliers);
650 outliers->SetLineColor(6+icount);
651 outliers->SetMarkerColor(6+icount);
652 outliers->SetMarkerStyle(20+2*icount);
653 outliers->SetLineWidth(2);
655 legTitle.ReplaceAll(
"plane",
"outliers");
656 leg->AddEntry(outliers,legTitle.Data(),
"lp");
670 AliWarning(
"This function is valid only for itype 1 and 2");
674 TString baseNames[3] = {
"Chamber",
"RPC",
"Board"};
675 TString base = baseNames[itype] +
"Stat";
678 AliWarning(
"Please specify RPC");
681 base += Form(
"InRPC%i",irpc);
694 for ( Int_t ich=0; ich<nCh; ich++ ) {
696 TH1* sumHistos = 0x0;
697 for ( Int_t idetelem=0; idetelem<nDetEl; idetelem++ ) {
698 Int_t detElemId = idetelem;
701 histos[idetelem]->SetName(Form(
"%s_stat",histos[idetelem]->GetName()));
702 histos[idetelem]->SetStats(0);
703 if ( sumHistos ) sumHistos->Add(histos[idetelem]);
704 else sumHistos =
static_cast<TH1*
>(histos[idetelem]->Clone(
"sumHistos"));
707 TString canName = base;
708 TCanvas* can =
new TCanvas(canName.Data(),canName.Data(),25*ich,25*ich,width,height);
709 can->Divide(nColumns,nRows,0,0);
710 for ( Int_t idetelem=0; idetelem<nDetEl; idetelem++ ) {
714 Int_t detElemId = idetelem;
716 TString
title = Form(
"%s %i",baseNames[itype].
Data(),detElemId);
717 TLegend* leg =
new TLegend(0.2,0.65,0.8,0.9);
718 leg->SetHeader(title.Data());
719 TGraphAsymmErrors* gr =
new TGraphAsymmErrors(histos[idetelem],sumHistos,
"e0");
720 gr->SetHistogram(static_cast<TH1F*>(histos[idetelem]));
722 gr->SetMarkerStyle(24);
723 gr->SetMarkerSize(0.5);
724 gr->GetYaxis()->SetRangeUser(minY,maxY);
725 gr->GetYaxis()->SetTitle(Form(
"Tracks in %s / Sum of tracks of %ss in %s",baseNames[itype].
Data(),baseNames[itype].
Data(),baseNames[itype-1].
Data()));
728 TString legTitle =
"stat";
730 if ( maxNsigmaOutliers > 0. ) {
731 TGraphAsymmErrors* outliers =
GetOutliers(gr,maxNsigmaOutliers);
732 outliers->SetLineColor(6);
733 outliers->SetMarkerColor(6);
734 outliers->SetMarkerStyle(20);
735 outliers->SetLineWidth(2);
737 legTitle =
"outliers";
738 leg->AddEntry(outliers,legTitle.Data(),
"lp");
753 Int_t colors[] = {kBlack, kRed, kSpring, kTeal, kBlue, kViolet, kMagenta, kOrange, kGray};
754 Int_t ncolors =
sizeof(colors)/
sizeof(colors[0]);
756 Int_t itype = ( perRPC ) ? AliMUONTriggerEfficiencyCells::kHslatCount : AliMUONTriggerEfficiencyCells::kHboardCount;
757 Int_t countTypes[2] = {AliMUONTriggerEfficiencyCells::kBendingEff,AliMUONTriggerEfficiencyCells::kNonBendingEff};
762 TObjArray* refCondition = 0x0;
763 TObjArray condTitle(nConditions);
764 condTitle.SetOwner();
766 Double_t xpt, ypt, xref, yref;
767 TArrayD eff(4), effErr(4);
772 while ( (trigOut = static_cast<AliTrigChEffOutput*>(next())) ) {
776 if ( imerged == 0 ) {
777 for ( Int_t icond=0; icond<nConditions; icond++ ) {
778 TObjArray* condition =
static_cast<TObjArray*
>(
fConditions->UncheckedAt(icond));
781 refCondition = condition;
782 title = condition->GetName();
784 for ( Int_t ic=0; ic<condition->GetEntriesFast(); ic++ ) {
785 TString currCond =
static_cast<TObjString*
>(condition->UncheckedAt(ic))->String();
786 TString refCond =
static_cast<TObjString*
>(refCondition->UncheckedAt(ic))->String();
787 if ( currCond == refCond )
continue;
788 TString add = currCond;
789 if ( ic == 3 ) add = trigOut->
GetHistoName(-1,-1,-1,currCond.Atoi(),-1,-1);
790 else if ( ic == 4 ) add = trigOut->
GetHistoName(-1,-1,-1,-1,currCond.Atoi(),-1);
791 else if ( ic == 5 ) add = trigOut->
GetHistoName(-1,-1,-1,-1,-1,currCond.Atoi());
792 title += Form(
"_%s",add.Data());
794 title.Remove(TString::kLeading,
'_');
795 condTitle.AddAt(
new TObjString(title),icond);
799 TArrayI isEmpty(nConditions);
803 TObjArray effGraphs[8];
804 for ( Int_t iplane=0; iplane<8; iplane++ ) {
805 effGraphs[iplane].SetOwner();
808 TObjArray effMapList;
809 effMapList.SetOwner();
810 for ( Int_t icond=0; icond<nConditions; icond++ ) {
811 TObjArray* condition =
static_cast<TObjArray*
>(
fConditions->UncheckedAt(icond));
814 AliMUONTriggerEfficiencyCells* effMap =
new AliMUONTriggerEfficiencyCells(effList);
815 effMapList.Add(effMap);
816 titles += Form(
"%s,",condTitle.At(icond)->GetName());
818 for ( Int_t ich=0; ich<4; ich++ ) {
819 TString currName = effMap->GetHistoName(itype,AliMUONTriggerEfficiencyCells::kAllTracks,ich);
820 TH1* histoDen =
static_cast<TH1*
>(effMap->GetHistoList()->FindObject(currName.Data()));
821 for ( Int_t icount=0; icount<2; icount++ ) {
822 Int_t iplane = 4*icount+ich;
824 if ( histoDen->GetEntries() > 0 ) {
825 currName = effMap->GetHistoName(itype,countTypes[icount],ich);
826 TH1* histoNum =
static_cast<TH1*
>(effMap->GetHistoList()->FindObject(currName.Data()));
827 TGraphAsymmErrors* gr =
new TGraphAsymmErrors(histoNum,histoDen,
"e0");
829 effGraphs[iplane].AddAtAndExpand(gr,icond);
833 AliWarning(Form(
"No entries in count %i and ch %i for %s\n",icount,ich,condTitle.At(icond)->GetName()));
839 titles.Remove(TString::kTrailing,
',');
843 TString canName = Form(
"EffSyst_%s",trigOut->GetName());
844 Int_t pos = 25*(imerged+1);
845 TCanvas* can =
new TCanvas(canName.Data(),canName.Data(),pos,pos,1200,800);
846 can->Divide(4,2,0,0);
848 for ( Int_t icount=0; icount<2; icount++ ) {
849 for ( Int_t ich=0; ich<4; ich++ ) {
850 Int_t iplane = 4*icount+ich;
854 TLegend* leg =
new TLegend(0.15,0.7,0.9,0.9);
855 leg->SetHeader(trigOut->
GetHistoName(-1,icount,ich,-1,-1,-1));
857 for ( Int_t icond=1; icond<nConditions; icond++ ) {
858 if ( isEmpty[icond] == 1 )
continue;
859 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);
860 histo->GetXaxis()->SetTitle(
"Eff.-(ref.Eff.)");
861 histo->GetYaxis()->SetTitle(
"1/#sigma^{2}");
863 TGraphAsymmErrors* gr =
static_cast<TGraphAsymmErrors*
>(effGraphs[iplane].UncheckedAt(icond));
864 TGraphAsymmErrors* grRef =
static_cast<TGraphAsymmErrors*
>(effGraphs[iplane].UncheckedAt(0));
865 for ( Int_t ipt=0; ipt<gr->GetN(); ipt++ ) {
866 gr->GetPoint(ipt,xpt,ypt);
867 Double_t err =
GetError(gr->GetErrorYlow(ipt),gr->GetErrorYhigh(ipt));
868 Double_t invErr2 = ( err > 0. ) ? 1./(err*err) : 0.;
869 grRef->GetPoint(ipt,xref,yref);
871 Double_t diff = ypt-yref;
872 histo->Fill(diff,invErr2);
876 sumHisto =
static_cast<TH1*
>(histo->Clone(Form(
"syst_%s_plane%i_ch%i",trigOut->GetName(),icount,11+ich)));
877 sumHisto->SetLineColor(1);
879 leg->AddEntry(sumHisto,
"All systematics",
"l");
881 else sumHisto->Add(histo);
882 Int_t icolor = ( icond < ncolors ) ? colors[icond] : 20+icond;
883 histo->SetLineColor(icolor);
885 leg->AddEntry(histo,condTitle[icond]->GetName(),
"l");
892 canName = Form(
"TriggerEff_3outOf4_syst_%s",trigOut->GetName());
894 TCanvas* canSyst =
new TCanvas(canName.Data(),canName.Data(),pos,pos,600,600);
896 TLegend* leg =
new TLegend(0.15,0.7,0.9,0.4);
898 TH1* histo[nConditions];
899 for ( Int_t icond=0; icond<nConditions; icond++ ) {
900 if ( isEmpty[icond] == 1 )
continue;
901 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);
902 histo[icond]->GetXaxis()->SetTitle(
"Trig. prob. - (ref. trig. prob)");
903 histo[icond]->GetYaxis()->SetTitle(
"1/#sigma^{2}");
906 for ( Int_t ipt=0; ipt<
nDE; ipt++ ) {
907 Double_t refTrigProb = 0.;
908 for ( Int_t icond=0; icond<nConditions; icond++ ) {
909 if ( isEmpty[icond] == 1 )
continue;
910 Double_t trigProb = 1., trigProbErr2 = 0.;
911 for ( Int_t icount=0; icount<2; icount++ ) {
912 for ( Int_t ich=0; ich<4; ich++ ) {
913 Int_t iplane = 4*icount+ich;
914 TGraphAsymmErrors* gr =
static_cast<TGraphAsymmErrors*
>(effGraphs[iplane].UncheckedAt(icond));
915 gr->GetPoint(ipt,xpt,ypt);
917 effErr[ich] =
GetError(gr->GetErrorYlow(ipt),gr->GetErrorYhigh(ipt));
919 Double_t effErr34 = 0.;
922 trigProbErr2 += effErr34*effErr34;
926 refTrigProb = trigProb;
930 Double_t invErr2 = ( trigProbErr2>0. ) ? 1./trigProbErr2 : 0.;
931 histo[icond]->Fill(trigProb-refTrigProb,invErr2);
936 for ( Int_t icond=0; icond<nConditions; icond++ ) {
937 if ( isEmpty[icond] == 1 )
continue;
938 TString
title = ( icond == 0 ) ?
"All systematics" : condTitle[icond]->GetName();
939 Int_t icolor = ( icond < ncolors ) ? colors[icond] : 20+icond;
940 histo[icond]->SetLineColor(icolor);
941 histo[icond]->Draw((icond == 0)?
"":
"same");
942 leg->AddEntry(histo[icond],title.Data(),
"l");
943 if ( icond>0 ) histo[0]->Add(histo[icond]);
954 TString decision =
"y";
956 if ( gROOT->IsBatch() ) prompt = kFALSE;
959 cout << command.Data() <<
" ? [y/n]" << endl;
964 if ( decision ==
"y" ) {
965 cout <<
"Executing: " << command.Data() << endl;
984 Double_t val = par[1];
985 Int_t nChanges = par[0];
986 Double_t matchDiff = 123456789.;
987 Int_t matchChange = -1;
988 for ( Int_t iknot=0; iknot<nChanges; iknot++ ) {
989 Int_t iparChange = 2*(iknot+1);
990 Double_t diff = xx - par[iparChange];
991 if ( diff >= 0. && diff < matchDiff ) {
993 matchChange = iparChange;
996 if ( matchChange >= 0 ) val = par[matchChange+1];
1004 TH1* statHisto = 0x0;
1006 UInt_t uFirstRun = (UInt_t)firstRun;
1007 UInt_t uLastRun = (UInt_t)lastRun;
1010 TList* effHistoList = 0x0;
1011 while ( (effHistoList = static_cast<TList*>(next()) ) ) {
1012 UInt_t run = effHistoList->GetUniqueID();
1013 if ( run < uFirstRun || run > uLastRun )
continue;
1016 if ( statHisto ) statHisto->Add(histo);
1017 else statHisto =
static_cast<TH1*
>(histo->Clone(
"tmpStatHisto"));
1020 if ( ! statHisto )
return 0.;
1022 Double_t statPerDE = 0.;
1025 Int_t excludeBoardsHalf[] = {1, 17, 39, 61, 77, 93,109,
1026 16, 38, 60, 76, 92, 108, 117,
1027 110, 111, 112, 113, 114, 115, 116};
1028 Int_t nExcludedHalf =
sizeof(excludeBoardsHalf)/
sizeof(excludeBoardsHalf[0]);
1029 for ( Int_t ibin=1; ibin<=statHisto->GetNbinsX(); ibin++ ) {
1030 Bool_t skip = kFALSE;
1031 for ( Int_t iexcl=0; iexcl<nExcludedHalf; iexcl++ ) {
1032 if ( ibin == excludeBoardsHalf[iexcl] || ibin == excludeBoardsHalf[iexcl]+117 ) {
1037 if ( skip )
continue;
1038 statPerDE += statHisto->GetBinContent(ibin);
1043 statPerDE = statHisto->Integral();
1044 nDe = (Double_t)statHisto->GetNbinsX();
1046 statPerDE = nDe > 0. ? statPerDE/nDe : -1.;
1056 Int_t itrackSel =
static_cast<TObjString*
>(condition->At(3))->String().Atoi();
1057 Int_t imatch =
static_cast<TObjString*
>(condition->At(4))->String().Atoi();
1058 Int_t imethod =
static_cast<TObjString*
>(condition->At(5))->String().Atoi();
1060 return trigOut->
GetEffHistoList(condition->At(0)->GetName(),condition->At(1)->GetName(),condition->At(2)->GetName(),itrackSel,imatch,imethod);
1067 return TMath::Max(errLow,errHigh);
1075 return static_cast<TH1*
>(effHistoList->At(ihisto));
1083 Int_t nRuns =
fOutputs->GetEntriesFast();
1085 TH1F* hRunChangeCount =
new TH1F(
"runChangeCount",
"Number of RPCs changing efficiency per run",nRuns,-0.5,-0.5+(Double_t)nRuns);
1086 hRunChangeCount->SetXTitle(
"Run num.");
1087 hRunChangeCount->SetYTitle(
"Num. of RPCs with change in eff.");
1088 for ( Int_t irun=0; irun<nRuns; irun++ ) {
1089 hRunChangeCount->GetXaxis()->SetBinLabel(irun+1,Form(
"%i",
GetRunNumber(irun)));
1094 Int_t nCanvas = perRPC ? 4 : 18;
1095 TObjArray canList(nCanvas);
1097 for ( Int_t irpc=0; irpc<18; irpc++ ) {
1100 Int_t firstDetEl = perRPC ? irpc : 0;
1101 Int_t lastDetEl = perRPC ? irpc : boards.GetSize()-1;
1103 for ( Int_t ich=0; ich<4; ich++ ) {
1104 Int_t ican = perRPC ? ich : irpc;
1105 TCanvas* can =
static_cast<TCanvas*
>(canList.At(ican));
1107 TString canName = perRPC ? Form(
"testRanges_ch%i",11+ich) : Form(
"testRanges_RPC%i",irpc);
1108 can =
new TCanvas(canName.Data(),canName.Data(),10*ich,10*ich,1200,800);
1109 can->Divide(6,3,0,0);
1110 canList.AddAt(can,ican);
1113 for ( Int_t idetel=firstDetEl; idetel<=lastDetEl; idetel++ ) {
1114 Int_t currDE = ( perRPC ) ? idetel : boards[idetel];
1116 TGraphAsymmErrors* trendGraph =
GetTrendEff(itype,icount,ich,currDE);
1117 TArrayI range =
GetHomogeneusRanges(trendGraph,chi2Cut,maxNRanges,minEffVariation,forcedChanges, kTRUE);
1118 trendGraph->GetYaxis()->SetRangeUser(minEff,maxEff);
1121 gPad->SetTicks(1,1);
1122 TString drawOpt = ( gPad->GetListOfPrimitives()->GetEntries() == 0 ) ?
"ap" :
"p";
1125 Int_t icolor = ich+1;
1126 trendGraph->SetLineColor(icolor);
1127 trendGraph->SetMarkerColor(icolor);
1128 trendGraph->SetMarkerStyle(24+ich);
1129 TF1* func =
static_cast<TF1*
>(trendGraph->GetListOfFunctions()->At(0));
1131 func->SetLineWidth(2);
1132 func->SetLineColor(icolor);
1135 trendGraph->GetXaxis()->SetLabelSize(0.07);
1137 trendGraph->Draw(drawOpt.Data());
1138 for ( Int_t ichange=2; ichange<range.GetSize(); ichange++ ) {
1140 if ( ichange%2 == 1 )
continue;
1141 Int_t runIdx = range[ichange];
1143 TLine* line =
new TLine(runIdx,minEff,runIdx,maxEff);
1144 line->SetLineStyle(2);
1147 text.DrawLatex((Double_t)(runIdx-3),maxEff-0.1*(maxEff-minEff)*(Double_t)(ichange/2),Form(
"%i",
GetRunNumber(runIdx)));
1149 hRunChangeCount->Fill(runIdx);
1150 if ( hRunChangeCount->GetBinContent(runIdx+1) == 1 ) {
1151 TString infoMsg = Form(
"Efficiency change in %i triggered by ch %i RPC %i",
GetRunNumber(runIdx),11+ich,irpc);
1152 if ( ! perRPC ) infoMsg += Form(
" Board %i",currDE);
1153 AliInfo(infoMsg.Data());
1162 TArrayI runChangeClust(nRuns);
1163 Double_t sumWgtRun = 0.;
1164 Double_t sumWgt = 0;
1165 for ( Int_t irun=0; irun<=nRuns; irun++ ) {
1166 if ( irun == nRuns || hRunChangeCount->GetBinContent(irun+1) == 0 ) {
1167 if ( sumWgt > 0. ) {
1168 Int_t averageRun = TMath::Nint(sumWgtRun / sumWgt);
1169 AliDebug(2,Form(
"Average run: %i => %i\n",averageRun,
GetRunNumber(averageRun)));
1170 runChangeClust[averageRun]++;
1175 if ( irun == nRuns )
break;
1177 AliDebug(2,Form(
"irun %i => %i: wgt %g",irun,
GetRunNumber(irun),hRunChangeCount->GetBinContent(irun+1)));
1180 Double_t wgt = hRunChangeCount->GetBinContent(irun+1);
1181 if ( forcedChanges ) {
1182 for ( Int_t ichange=0; ichange<forcedChanges->GetSize(); ichange++ ) {
1183 if (
GetRunNumber(irun) == forcedChanges->At(ichange) ) wgt *= 10.;
1186 sumWgtRun += wgt*(Double_t)irun;
1190 TCanvas* summaryCan =
new TCanvas(
"effChangeSummary",
"effChangeSummary",50,50,600,600);
1191 summaryCan->SetLogy();
1192 hRunChangeCount->GetXaxis()->LabelsOption(
"v");
1193 hRunChangeCount->Draw();
1196 TArrayI runRanges(nRuns);
1198 for ( Int_t irun=1; irun<nRuns; irun++ ) {
1199 if ( runChangeClust[irun] > 0 ) {
1205 runRanges.Set(ientry);
1216 TArrayD forcedChangesBin;
1218 if ( forcedChanges ) {
1219 forcedChangesBin.Set(forcedChanges->GetSize());
1220 for ( Int_t ichange=0; ichange<forcedChanges->GetSize(); ichange++ ) {
1222 if ( idx >= 0 ) forcedChangesBin[nForced++] = (Double_t)idx;
1223 else AliWarning(Form(
"Cannot find run %i\n",forcedChanges->At(ichange)));
1227 Double_t minNormChi2 = 123456789.;
1228 Int_t minNormChi2Step = -1;
1229 TString fitOpt =
"NQ0";
1234 for ( Int_t istep=0; istep<maxNRanges; istep++ ) {
1235 Int_t nPars = 2*(istep+1);
1236 Double_t xMin = trendGraph->GetXaxis()->GetXmin();
1237 Double_t xMax = trendGraph->GetXaxis()->GetXmax();
1239 func->FixParameter(0,istep);
1240 for ( Int_t ipar=1; ipar<nPars; ipar++ ) {
1247 Double_t val = ( ipar%2 == 1 ) ? 0.95 : (xMax-xMin) * (Double_t)(ipar/2)/((Double_t)(istep+1));
1248 func->SetParameter(ipar,val);
1249 if ( ipar%2 == 0 ) func->SetParLimits(ipar,xMin,xMax);
1252 TFitResultPtr fitResult = trendGraph->Fit(func,fitOpt.Data());
1255 if ( forcedChanges ) {
1256 Bool_t hasFixedPars = kFALSE;
1257 for ( Int_t iforced=0; iforced<nForced; iforced++ ) {
1258 for ( Int_t jstep=0; jstep<istep; jstep++ ) {
1259 Int_t ipar = 2*(jstep+1);
1260 if ( TMath::Abs(forcedChangesBin[iforced]-func->GetParameter(ipar)) > 2. )
continue;
1261 func->FixParameter(ipar,forcedChangesBin[iforced]);
1262 hasFixedPars = kTRUE;
1265 if ( hasFixedPars ) fitResult = trendGraph->Fit(func,fitOpt.Data());
1272 Double_t normChi2 = func->GetChisquare() / ((Double_t)func->GetNDF());
1273 if ( normChi2 < minNormChi2 ) {
1274 minNormChi2 = normChi2;
1275 minNormChi2Step = istep;
1278 if ( normChi2 < chi2Cut )
break;
1284 trendGraph->GetListOfFunctions()->Add(func->Clone());
1285 Int_t nSteps = (Int_t)func->GetParameter(0);
1290 Int_t nPoints = nSteps+1;
1291 TArrayD parRunIdx(nPoints);
1292 TArrayD parEff(nPoints);
1293 for ( Int_t ipar=0; ipar<func->GetNpar(); ipar++ ) {
1294 Int_t istep = ipar/2;
1295 if ( ipar%2 == 0 ) parRunIdx[istep] = func->GetParameter(ipar);
1296 else parEff[istep] = func->GetParameter(ipar);
1299 TArrayI sortIdx(nPoints);
1300 TMath::Sort(nPoints,parRunIdx.GetArray(),sortIdx.GetArray(),kFALSE);
1302 runRanges.Set(2*nPoints);
1305 for ( Int_t ipoint=1; ipoint<nPoints; ipoint++ ) {
1306 Double_t deltaEff = TMath::Abs(parEff[sortIdx[ipoint]]-parEff[sortIdx[ipoint-1]]);
1308 if ( deltaEff < minEffVariation ) {
1309 AliWarning(Form(
"Efficiency variation for %s is %g => consider uniform",trendGraph->GetName(),deltaEff));
1312 Int_t runChangeIdx = TMath::Nint(parRunIdx[sortIdx[ipoint]]);
1313 AliDebug(1,Form(
"Change run: %s => %g => %i %i",trendGraph->GetName(),parRunIdx[sortIdx[ipoint]],runChangeIdx,
GetRunNumber(runChangeIdx)));
1314 runRanges[irun++] = returnIndex ? runChangeIdx-1 :
GetRunNumber(runChangeIdx-1);
1315 runRanges[irun++] = returnIndex ? runChangeIdx :
GetRunNumber(runChangeIdx);
1317 Int_t lastPt = trendGraph->GetN()-1;
1318 runRanges[irun++] = returnIndex ? lastPt :
GetRunNumber(lastPt);
1319 runRanges.Set(irun);
1322 AliWarning(Form(
"Fit did not converge for %s (minimum chi2 %g for step %i)",trendGraph->GetName(),minNormChi2,minNormChi2Step));
1337 TString identifier = Form(
"/%s/%s/%s/",condition->At(0)->GetName(),condition->At(1)->GetName(),condition->At(2)->GetName());
1338 Int_t itrackSel =
static_cast<TObjString*
>(condition->At(3))->String().Atoi();
1339 Int_t imatch =
static_cast<TObjString*
>(condition->At(4))->String().Atoi();
1340 Int_t imethod =
static_cast<TObjString*
>(condition->At(5))->String().Atoi();
1341 TString objName = trigOut->
GetHistoName(itype, icount, ichamber, itrackSel, imatch, imethod);
1342 identifier += objName;
1350 for ( Int_t ipt=0; ipt<
fOutputs->GetEntriesFast(); ipt++ ) {
1351 UInt_t run =
fOutputs->UncheckedAt(ipt)->GetUniqueID();
1352 if ( run == runNumber )
return ipt;
1362 TGraphAsymmErrors* outliers =
new TGraphAsymmErrors(*graph);
1363 outliers->SetHistogram(static_cast<TH1F*>(graph->GetHistogram()->Clone(Form(
"%s_outliers",graph->GetHistogram()->GetName()))));
1365 if ( graph->GetListOfFunctions()->GetEntries() == 0 ) graph->Fit(
"pol0",
"Q0");
1366 TF1* func =
static_cast<TF1*
>(graph->GetListOfFunctions()->At(0));
1370 for ( Int_t ipt=0; ipt<graph->GetN(); ipt++ ) {
1371 graph->GetPoint(ipt,xpt,ypt);
1372 Double_t diff = ypt - func->Eval(xpt);
1373 Double_t err = ( diff > 0. ) ? graph->GetErrorYlow(ipt) : graph->GetErrorYhigh(ipt);
1374 if ( err < 0. || TMath::Abs(diff)/err > maxNsigmas )
continue;
1375 outliers->RemovePoint(ipt-nremoved);
1386 if ( ipt < 0 || ipt >=
fOutputs->GetEntriesFast() )
return -1;
1387 return fOutputs->UncheckedAt(ipt)->GetUniqueID();
1394 TList* rl =
new TList;
1396 TString sRunList =
gSystem->ExpandPathName(runList);
1397 if (
gSystem->AccessPathName(sRunList) || sRunList.EndsWith(
".root") ) {
1398 sRunList.ReplaceAll(
",",
" ");
1399 if ( sRunList.IsDigit() ) {
1400 TObjArray* arr = sRunList.Tokenize(
" ");
1401 for ( Int_t iarr=0; iarr<arr->GetEntries(); iarr++ ) {
1402 rl->Add(
new TObjString(arr->At(iarr)->GetName()));
1408 ifstream inFile(sRunList.Data());
1409 TString currLine =
"";
1410 while ( ! inFile.eof() ) {
1411 currLine.ReadLine(inFile);
1412 TString currRun = AliAnalysisMuonUtility::GetRunNumberAsString(currLine);
1413 if ( ! currRun.IsNull() ) rl->Add(
new TObjString(currRun));
1425 Int_t itrackSel =
static_cast<TObjString*
>(condition->At(3))->String().Atoi();
1426 Int_t imatch =
static_cast<TObjString*
>(condition->At(4))->String().Atoi();
1427 Int_t imethod =
static_cast<TObjString*
>(condition->At(5))->String().Atoi();
1428 TString objName = trigOut->
GetHistoName(itype, icount, ichamber, itrackSel, imatch, imethod);
1429 return static_cast<TH1*
>(trigOut->GetSum(condition->At(0)->GetName(),condition->At(1)->GetName(),condition->At(2)->GetName(),objName));
1437 if ( idetelem < 0 && ichamber >=0 ) idetelem = 11+ichamber;
1439 TH1* outHisto = 0x0;
1442 TList* effHistoList = 0x0;
1444 while ( (effHistoList = static_cast<TList*>(next()) ) ) {
1449 TString outName = Form(
"histo_type%i_count%i_ch%i_",itype,icount,11+ichamber);
1451 outName += Form(
"%i_trend",idetelem);
1452 outHisto =
new TH1D(outName.Data(),outName.Data(),
fOutputs->GetEntriesFast(),0.,(Double_t)
fOutputs->GetEntriesFast());
1453 outHisto->SetDirectory(0);
1454 outHisto->GetXaxis()->SetTitle(
"Run num.");
1456 UInt_t run = effHistoList->GetUniqueID();
1457 outHisto->GetXaxis()->SetBinLabel(ibin,Form(
"%u",run));
1458 TH1* histo =
GetHisto(effHistoList,itype,icount,ichamber);
1459 Int_t currBin = histo->GetXaxis()->FindBin(idetelem);
1460 outHisto->SetBinContent(ibin,histo->GetBinContent(currBin));
1461 outHisto->SetBinError(ibin,histo->GetBinError(currBin));
1463 if ( outHisto ) outHisto->GetXaxis()->LabelsOption(
"v");
1472 AliWarning(
"Chose either bending plane, non-bending plane or both planes");
1475 TH1* histoNum =
GetTrend(itype,icount,ichamber,idetelem);
1477 TGraphAsymmErrors* graph =
new TGraphAsymmErrors(histoNum,histoDen,
"e0");
1479 histoNum->SetStats(kFALSE);
1480 graph->SetHistogram(static_cast<TH1F*>(histoNum));
1481 graph->GetYaxis()->SetTitle(
"Efficiency");
1482 graph->SetMarkerSize(0.5);
1495 Double_t binomialEff = 0.;
1496 Double_t sumErr2 = 0.;
1497 for ( Int_t jch=-1; jch<4; jch++ ) {
1498 Double_t prodEff = 1.;
1499 Double_t prodErr2 = 0.;
1500 for ( Int_t ich=0; ich<4; ich++ ) {
1501 Double_t currEff = ( ich == jch ) ? 1.-eff[ich] : eff[ich];
1503 Double_t relErr = ( currEff>0. ) ? effErr[ich]/currEff : 0.;
1504 prodErr2 += relErr*relErr;
1506 binomialEff += prodEff;
1507 sumErr2 += prodEff*prodEff*prodErr2;
1509 probErr = TMath::Sqrt(sumErr2);
1518 AliError(
"You first need to merge efficiency objects with MergeOutput");
1529 if ( runRanges.GetSize()%2 == 1 ) {
1530 AliError(
"Run ranges expected in the form: start_period1,end_period1,start_period2,end_period2... => even number expected");
1536 Int_t nRanges = mergedRanges.GetSize()/2;
1545 TList* effHistoList = 0x0;
1546 for ( Int_t irange=0; irange<nRanges; irange++ ) {
1547 Int_t firstRun = mergedRanges[2*irange];
1548 Int_t lastRun = mergedRanges[2*irange+1];
1553 UInt_t uFirstRun = (UInt_t)firstRun;
1554 UInt_t uLastRun = (UInt_t)lastRun;
1556 TString filename =
"";
1559 TFileMerger fileMerger;
1560 while ( (effHistoList = static_cast<TList*>(next()) ) ) {
1561 UInt_t run = effHistoList->GetUniqueID();
1562 if ( run < uFirstRun || run > uLastRun )
continue;
1563 filename = effHistoList->GetName();
1564 if ( firstRun == lastRun )
continue;
1565 fileMerger.AddFile(filename.Data(),kFALSE);
1568 TString sRange = Form(
"%i_%i",firstRun,lastRun);
1569 TString mergedFilename = Form(
"mergedTrigEff_runs_%s.root",sRange.Data());
1571 if ( firstRun == lastRun ) TFile::Cp(filename.Data(),mergedFilename.Data(),kFALSE);
1573 fileMerger.OutputFile(mergedFilename.Data());
1577 trigOut->SetName(sRange.Data());
1586 if ( averageStatError <= 0. || averageStatError >= 1. )
return runRanges;
1592 Double_t effForStatCalc = 0.9;
1594 Double_t averageStatNeeded = effForStatCalc*(1.-effForStatCalc)/(averageStatError*averageStatError);
1596 AliInfo(Form(
"Average statistics needed to reach precision of %g : %g",averageStatError,averageStatNeeded));
1598 Int_t nRanges = runRanges.GetSize()/2;
1600 TArrayD averageStat(nRanges);
1601 Double_t fullStat = 0.;
1602 for ( Int_t irange=0; irange<nRanges; irange++ ) {
1604 fullStat += averageStat[irange];
1607 TArrayI mergedRanges(runRanges.GetSize());
1609 mergedRanges[imerged++] = runRanges[0];
1610 Double_t mergedAverageStat = 0., remainingStat = fullStat;
1611 for ( Int_t irange=0; irange<nRanges; irange++ ) {
1612 Int_t istart = 2*irange;
1613 Int_t iend = istart+1;
1614 mergedAverageStat += averageStat[irange];
1615 remainingStat -= averageStat[irange];
1617 AliInfo(Form(
"%i - %i => stat %g",runRanges[2*irange],runRanges[2*irange+1],averageStat[irange]));
1619 if ( ( mergedAverageStat >= averageStatNeeded && remainingStat >= averageStatNeeded ) || iend == runRanges.GetSize()-1 ) {
1620 mergedRanges[imerged++] = runRanges[iend];
1621 AliInfo(Form(
" merged range %i - %i => stat %g",mergedRanges[imerged-2],mergedRanges[imerged-1],mergedAverageStat));
1622 mergedAverageStat = 0.;
1623 Int_t nextRun = iend+1;
1624 if ( nextRun < runRanges.GetSize() ) mergedRanges[imerged++] = runRanges[nextRun];
1627 mergedRanges.Set(imerged);
1628 return mergedRanges;
1640 TString sCondition = Form(
"%s;%s;%s;%i;%i;%i",physSel,trigClassName,centrality,itrackSel,imatch,imethod);
1641 TObjArray* foundCondition =
static_cast<TObjArray*
>(
fConditions->FindObject(sCondition.Data()));
1642 TObjArray* basicCondition =
static_cast<TObjArray*
>(
fConditions->At(0));
1644 TObjArray* addCondition = 0x0;
1646 if ( foundCondition ) {
1648 if ( foundCondition == basicCondition )
return kFALSE;
1651 addCondition = foundCondition;
1655 AliInfo(
"Systematic condition already added");
1660 addCondition = sCondition.Tokenize(
";");
1661 addCondition->SetName(sCondition.Data());
1666 if ( basicCondition ) {
1667 AliInfo(Form(
"Changing current eff. condition: %s\n",basicCondition->GetName()));
1669 delete basicCondition;
1676 TObjArray* tmpOutputs =
static_cast<TObjArray*
>(
fOutputs->Clone());
1678 TIter next(tmpOutputs);
1679 TList* effHistiList = 0x0;
1680 while ( (effHistiList = static_cast<TList*>(next())) ) {
1703 return SetCondition(physSel, trigClassName, centrality, itrackSel, imatch, imethod, kTRUE);
1713 TString filename(localFileList);
1714 gSystem->ExpandPathName(filename);
1715 if (
gSystem->AccessPathName(filename.Data()) ) {
1716 AliWarning(Form(
"Cannot find %s",filename.Data()));
1719 if ( filename.EndsWith(
".root") )
return AddToList(filename.Data(),outputName);
1721 Bool_t isOk = kTRUE;
1722 ifstream inFile(filename.Data());
1723 TString currLine =
"";
1724 while ( ! inFile.eof() ) {
1725 currLine.ReadLine(inFile);
1726 if ( currLine.IsNull() )
continue;
1727 if (
gSystem->AccessPathName(currLine.Data()) )
continue;
1728 if ( !
AddToList(currLine.Data(), outputName) ) isOk = kFALSE;
1739 CopyLocally(runList,path,pattern,localFileList,outDir,directory);
1747 CopyLocally(runList,path,
"",localFileList,outDir,directory);
1756 TString outCDBdir(outputCDB);
1757 if ( outCDBdir.Contains(
"://") && ! outCDBdir.BeginsWith(
"local") ) {
1758 AliError(
"A local directory is required to store the information");
1761 outCDBdir.ReplaceAll(
"local://",
"");
1762 if (
gSystem->AccessPathName(outCDBdir.Data()) ) {
1763 if ( !
ExecCommand(Form(
"mkdir -p %s",outCDBdir.Data()), kTRUE) ) {
1764 AliError(Form(
"Failed to create directory %s",outCDBdir.Data()));
1768 TString outCDB = outCDBdir;
1769 outCDB.Prepend(
"local://");
1771 AliCDBManager* mgr = AliCDBManager::Instance();
1772 if ( ! mgr->GetDefaultStorage() ) mgr->SetDefaultStorage(
"local://$ALICE_ROOT/OCDB");
1774 TString trigEffCDBdir =
"MUON/Calib/TriggerEfficiency";
1776 mgr->SetSpecificStorage(trigEffCDBdir.Data(),outCDB.Data());
1778 AliCDBStorage* specificStorage = mgr->GetSpecificStorage(trigEffCDBdir.Data());
1780 TObjArray* condition =
static_cast<TObjArray*
>(
fConditions->At(0));
1784 while ( (trigOut = static_cast<AliTrigChEffOutput*>(next())) ) {
1786 TString runRange = trigOut->GetName();
1797 TObjArray* currRange = runRange.Tokenize(
"_");
1798 Int_t firstRun =
static_cast<TObjString*
>(currRange->UncheckedAt(0))->String().Atoi();
1799 Int_t lastRun =
static_cast<TObjString*
>(currRange->UncheckedAt(1))->String().Atoi();
1803 for ( Int_t irun=0; irun<2; irun++ ) {
1804 Int_t runnr = ( irun == 0 ) ? firstRun : lastRun;
1805 specificStorage->QueryCDB(runnr);
1806 TObjArray* allIdsForRun = specificStorage->GetQueryCDBList();
1807 TIter nextId(allIdsForRun);
1809 while ((
id = dynamic_cast<AliCDBId*>(nextId()))) {
1810 TString path(id->GetPath());
1811 Int_t foundFirst =
id->GetFirstRun();
1812 Int_t foundLast =
id->GetLastRun();
1813 Int_t version =
id->GetVersion();
1814 Int_t subversion =
id->GetSubVersion();
1815 TString locPath = Form(
"%s/%s/Run%d_%d_v%d_s%d.root",outCDBdir.Data(),path.Data(),foundFirst,foundLast,version,subversion);
1816 if ( !
gSystem->AccessPathName(locPath.Data()) ) {
1823 AliMUONTriggerEfficiencyCells* effMap =
new AliMUONTriggerEfficiencyCells(effList);
1824 AliMUONCDB::WriteToCDB(effMap,
"MUON/Calib/TriggerEfficiency", firstRun, lastRun,
"Measured efficiencies");
Counts per cathode histogram index.
Int_t GetIndexFromRun(UInt_t runNumber) const
ClassImp(AliAnalysisTaskTriggerRates) AliAnalysisTaskTriggerRates
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")
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()
Output for Trig chamber effieincy.
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)
TArrayI GetHomogeneusRanges(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)
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
TList * GetRunList(const char *runList) const
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