2 // makeResults.C("tasks", "file_list", kGRID)
3 // tasks : "ALL" or one/more of the following separated by space:
4 // "EFF" : TRD Tracking Efficiency
5 // "EFFC" : TRD Tracking Efficiency Combined (barrel + stand alone) - only in case of simulations
6 // "RES" : TRD tracking Resolution
7 // "CAL" : TRD calibration
8 // "PID" : TRD PID - pion efficiency
9 // "PIDR" : TRD PID - reference data
10 // "DET" : Basic TRD Detector checks
11 // "NOFR" : Data set does not have AliESDfriends.root
12 // "NOMC" : Data set does not have Monte Carlo Informations (real data), so all tasks which rely
13 // on MC information are switched off
14 // file_list : is the list of the files to be processed.
15 // They should contain the full path. Here is an example:
16 // /lustre/alice/local/TRDdata/SIM/P-Flat/TRUNK/RUN0/TRD.Performance.root
17 // or for GRID alien:///alice/cern.ch/user/m/mfasel/MinBiasProd/results/ppMinBias80000/1/TRD.Performance.root
18 // kGRID : specify if files are comming from a GRID collection [default kFALSE]
20 // HOW TO BUILD THE FILE LIST
22 // ls -1 BaseDir/RUN*/TRD.Performance.root > files.lst
25 // char *BaseDir="/alice/cern.ch/user/m/mfasel/MinBiasProd/results/ppMinBias80000/";
26 // TGrid::Connect("alien://");
27 // TGridResult *res = gGrid->Query(BaseDir, "%/TRD.Task%.root");
28 // TGridCollection *col = gGrid->OpenCollectionQuery(res);
31 // while(map = (TMap*)col->Next()){
32 // TIter it((TCollection*)map);
33 // TObjString *info = 0x0;
34 // while(info=(TObjString*)it()){
35 // printf("alien://%s\n", col->GetLFN(info->GetString().Data()));
39 // The files which will be processed are the intersection between the
40 // condition on the tasks and the files in the file list.
43 // Alex Bercuci (A.Bercuci@gsi.de)
44 // Markus Fasel (m.Fasel@gsi.de)
47 #if ! defined (__CINT__) || defined (__MAKECINT__)
51 #include <TFileMerger.h>
55 #include <TObjArray.h>
56 #include <TObjString.h>
62 #include "qaRec/AliTRDrecoTask.h"
66 #include "AliTRDperformanceTrain.h"
67 //#include "../../PWG1/macros/AddPerformanceTask.h"
69 Char_t *libs[] = {"libProofPlayer.so", "libANALYSIS.so", "libTRDqaRec.so"};
72 Bool_t mc(kFALSE), friends(kFALSE);
74 void mergeProd(const Char_t *mark="TRD.Performance.root", const Char_t *files=0);
75 void processTRD(TNamed* task);
76 void processAliTask(TNamed* task);
77 void makeResults(Char_t *opt = "ALL", const Char_t *files=0x0, Bool_t kGRID=kFALSE)
80 if(!gSystem->Getenv("GSHELL_ROOT")){
81 Error("makeResults.C", "AliEn not initialized.");
84 TGrid::Connect("alien://");
87 // Load Libraries in interactive mode
88 Int_t nlibs = static_cast<Int_t>(sizeof(libs)/sizeof(Char_t *));
89 for(Int_t ilib=0; ilib<nlibs; ilib++){
90 if(gSystem->Load(libs[ilib]) >= 0) continue;
91 Error("makeResults.C", Form("Failed to load %s.", libs[ilib]));
95 mc = HasReadMCData(opt);
96 friends = HasReadFriendData(opt);
98 gStyle->SetOptStat(0);
100 if(files) mergeProd("TRD.Performance.root", files);
101 Int_t fSteerTask = ParseOptions(opt);
103 if(!c) c=new TCanvas("c", "Performance", 10, 10, 800, 500);
105 TClass *ctask = new TClass;
106 AliAnalysisTask *task = 0x0;
107 AliTRDrecoTask *trd = 0x0;
108 for(Int_t itask = NTRDQATASKS; itask--;){
109 if(!TSTBIT(fSteerTask, itask)) continue;
110 new(ctask) TClass(fgkTRDtaskClassName[itask]);
111 task = (AliAnalysisTask*)ctask->New();
113 if(task->IsA()->InheritsFrom("AliTRDrecoTask")) processTRD(task);
114 else processAliTask(task);
120 //______________________________________________________
121 void mergeProd(const Char_t *mark, const Char_t *files)
123 const Int_t kBatch = 20;
125 TFileMerger *fFM = new TFileMerger(1);
126 fFM->OutputFile(Form("%s/0_%s", gSystem->ExpandPathName("$PWD"), mark));
128 Int_t jbatch = 0, nbatch = 0;
130 ifstream file(files);
131 while(getline(file, filename)){
132 if(Int_t(filename.find(mark)) < 0) continue;
133 fFM->AddFile(filename.c_str()); nbatch++;
135 //printf("MERGE BATCH %d [%d]\n", jbatch, nbatch);
136 fFM->Merge(); jbatch++;
137 new(fFM) TFileMerger(kTRUE);
138 fFM->OutputFile(Form("%s/%d_%s", gSystem->ExpandPathName("$PWD"), jbatch, mark));
143 //printf("MERGE BATCH %d[%d]\n", jbatch, nbatch);
152 new(fFM) TFileMerger(kTRUE);
153 fFM->OutputFile(Form("%s/%s", gSystem->ExpandPathName("$PWD"), mark));
154 for(Int_t ib=jbatch; ib--;){
155 fFM->AddFile(Form("%s/%d_%s", gSystem->ExpandPathName("$PWD"), ib, mark));
156 gSystem->Exec(Form("rm -f %s/%d_%s", gSystem->ExpandPathName("$PWD"), ib, mark));
162 //______________________________________________________
163 void processTRD(TNamed *otask)
165 AliTRDrecoTask *task = dynamic_cast<AliTRDrecoTask*>(otask);
166 task->SetDebugLevel(0);
168 task->SetFriends(friends);
170 if(!task->Load(Form("%s/TRD.Performance.root", gSystem->ExpandPathName("$PWD")))){
171 Error("makeResults.C", Form("Load data container for task %s failed.", task->GetName()));
176 if(!task->PostProcess()){
177 Error("makeResults.C", Form("Processing data container for task %s failed.", task->GetName()));
181 for(Int_t ipic=0; ipic<task->GetNRefFigures(); ipic++){
183 if(!task->GetRefFigure(ipic)) continue;
184 c->SaveAs(Form("%s_Fig%02d.gif", task->GetName(), ipic));
189 //______________________________________________________
190 void processAliTask(TNamed *otask)
192 AliAnalysisTask *task = dynamic_cast<AliAnalysisTask*>(otask);
193 Info("makeResults.C", Form("Processing of task %s not implemented yet.", task->GetName()));