]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliQADataMakerSteer.cxx
8e94fb58b3046f754fd0e702c687fce70c205fbb
[u/mrichter/AliRoot.git] / STEER / AliQADataMakerSteer.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17 ///////////////////////////////////////////////////////////////////////////////
18 //                                                                           //
19 // class for running the QA makers                                           //
20 //                                                                           //
21 //   AliQADataMakerSteer qas;                                                //
22 //   qas.Run(AliQA::kRAWS, rawROOTFileName);                                 //
23 //   qas.Run(AliQA::kHITS);                                                  //
24 //   qas.Run(AliQA::kSDIGITS);                                               //
25 //   qas.Run(AliQA::kDIGITS);                                                //
26 //   qas.Run(AliQA::kRECPOINTS);                                             //
27 //   qas.Run(AliQA::kESDS);                                                  //
28 //                                                                           //
29 ///////////////////////////////////////////////////////////////////////////////
30
31 #include <TKey.h>
32 #include <TFile.h>
33 #include <TFileMerger.h>
34 #include <TPluginManager.h>
35 #include <TROOT.h>
36 #include <TString.h>
37 #include <TSystem.h>
38
39 #include "AliCDBManager.h"
40 #include "AliCDBEntry.h"
41 #include "AliCDBId.h"
42 #include "AliCDBMetaData.h"
43 #include "AliESDEvent.h"
44 #include "AliHeader.h"
45 #include "AliLog.h"
46 #include "AliModule.h"
47 #include "AliQA.h"
48 #include "AliQADataMakerRec.h"
49 #include "AliQADataMakerSim.h"
50 #include "AliQADataMakerSteer.h" 
51 #include "AliRawReaderDate.h"
52 #include "AliRawReaderFile.h"
53 #include "AliRawReaderRoot.h"
54 #include "AliRun.h"
55 #include "AliRunLoader.h"
56
57 ClassImp(AliQADataMakerSteer) 
58
59 //_____________________________________________________________________________
60 AliQADataMakerSteer::AliQADataMakerSteer(const char* gAliceFilename, const char * name, const char * title) :
61         TNamed(name, title), 
62         fCurrentEvent(0),  
63         fCycleSame(kFALSE),
64         fDetectors("ALL"), 
65         fDetectorsW("ALL"), 
66         fESD(NULL), 
67         fESDTree(NULL),
68         fFirst(kTRUE),  
69         fGAliceFileName(gAliceFilename), 
70     fMaxEvents(0),        
71         fNumberOfEvents(999999), 
72     fRunNumber(0), 
73         fRawReader(NULL), 
74         fRawReaderDelete(kTRUE), 
75         fRunLoader(NULL)  
76 {
77         // default ctor
78         fMaxEvents = fNumberOfEvents ; 
79         for (UInt_t iDet = 0; iDet < fgkNDetectors; iDet++) {
80                 if (IsSelected(AliQA::GetDetName(iDet))) {
81                         fLoader[iDet]      = NULL ;
82                         fQADataMaker[iDet] = NULL ;
83                         fQACycles[iDet]    = 999999 ;
84                 }
85         }       
86 }
87
88 //_____________________________________________________________________________
89 AliQADataMakerSteer::AliQADataMakerSteer(const AliQADataMakerSteer & qas) : 
90         TNamed(qas), 
91         fCurrentEvent(qas.fCurrentEvent),  
92         fCycleSame(kFALSE),
93         fDetectors(qas.fDetectors), 
94         fDetectorsW(qas.fDetectorsW), 
95         fESD(NULL), 
96         fESDTree(NULL), 
97         fFirst(qas.fFirst),  
98         fGAliceFileName(qas.fGAliceFileName), 
99     fMaxEvents(qas.fMaxEvents),        
100         fNumberOfEvents(qas.fNumberOfEvents), 
101     fRunNumber(qas.fRunNumber), 
102         fRawReader(NULL), 
103         fRawReaderDelete(kTRUE), 
104         fRunLoader(NULL)  
105 {
106         // cpy ctor
107         for (UInt_t iDet = 0; iDet < fgkNDetectors; iDet++) {
108                 fLoader[iDet]      = qas.fLoader[iDet] ;
109                 fQADataMaker[iDet] = qas.fQADataMaker[iDet] ;
110                 fQACycles[iDet]    = qas.fQACycles[iDet] ;      
111         }
112 }
113
114 //_____________________________________________________________________________
115 AliQADataMakerSteer & AliQADataMakerSteer::operator = (const AliQADataMakerSteer & qas) 
116 {
117         // assignment operator
118   this->~AliQADataMakerSteer() ;
119   new(this) AliQADataMakerSteer(qas) ;
120   return *this ;
121 }
122
123 //_____________________________________________________________________________
124 AliQADataMakerSteer::~AliQADataMakerSteer() 
125 {
126         // dtor
127   for (UInt_t iDet = 0; iDet < fgkNDetectors; iDet++) {
128           if (IsSelected(AliQA::GetDetName(iDet))) {
129                   fLoader[iDet] = NULL;
130                   if (fQADataMaker[iDet]) {
131                           (fQADataMaker[iDet])->Finish() ; 
132                           delete fQADataMaker[iDet] ;
133                           fQADataMaker[iDet] = NULL ;
134                   }
135           }
136   }
137
138   if (fRawReaderDelete) { 
139         fRunLoader = NULL ;
140         delete fRawReader ;
141         fRawReader = NULL ;
142   }
143 }
144
145 //_____________________________________________________________________________
146 Bool_t AliQADataMakerSteer::DoIt(const AliQA::TASKINDEX taskIndex, const char * mode)
147 {
148         // Runs all the QA data Maker for every detector
149
150         Bool_t rv = kFALSE ;
151     // Fill QA data in event loop 
152         for (UInt_t iEvent = 0 ; iEvent < (UInt_t)fMaxEvents ; iEvent++) {
153                 fCurrentEvent++ ; 
154                 // Get the event
155                 if ( iEvent%10 == 0  ) 
156                         AliInfo(Form("processing event %d", iEvent));
157                 if ( taskIndex == AliQA::kRAWS ) {
158                         if ( !fRawReader->NextEvent() )
159                                 break ;
160                 } else if ( taskIndex == AliQA::kESDS ) {
161                         if ( fESDTree->GetEntry(iEvent) == 0 )
162                                 break ;
163                 } else {
164                         if ( fRunLoader->GetEvent(iEvent) != 0 )
165                                 break ;
166                 }
167                 // loop over detectors
168                 TObjArray* detArray = NULL ; 
169                 if (fRunLoader) // check if RunLoader exists 
170                         if ( fRunLoader->GetAliRun() ) // check if AliRun exists in gAlice.root
171                                 detArray = fRunLoader->GetAliRun()->Detectors() ;
172                 for (UInt_t iDet = 0 ; iDet < fgkNDetectors ; iDet++) {
173                         if (detArray) {
174                                 AliModule* det = static_cast<AliModule*>(detArray->FindObject(AliQA::GetDetName(iDet))) ;
175                                 if (!det || !det->IsActive()) 
176                                         continue ;
177                         }
178                         if (!IsSelected(AliQA::GetDetName(iDet)))
179                                 continue ;
180                         AliQADataMaker * qadm = GetQADataMaker(iDet, mode) ;
181                         if (!qadm) {
182                                 rv = kFALSE ;
183                         } else {
184                                 if ( qadm->IsCycleDone() ) {
185                                         qadm->EndOfCycle(AliQA::kRAWS) ;
186                                         qadm->StartOfCycle(AliQA::kRAWS) ;
187                                 }
188                                 TTree * data ; 
189                                 switch (taskIndex) {
190                                         case AliQA::kRAWS :
191                                                 qadm->Exec(taskIndex, fRawReader) ; 
192                                                 break ; 
193                                         case AliQA::kHITS :
194                                                 GetLoader(iDet)->LoadHits() ; 
195                                                 data = GetLoader(iDet)->TreeH() ; 
196                                                 if ( ! data ) {
197                                                         AliWarning(Form(" Hit Tree not found for  %s", AliQA::GetDetName(iDet))) ; 
198                                                 } else {
199                                                         qadm->Exec(taskIndex, data) ;
200                                                 } 
201                                                 break ;
202                                                 case AliQA::kSDIGITS :
203                                                 GetLoader(iDet)->LoadSDigits() ; 
204                                                 data = GetLoader(iDet)->TreeS() ; 
205                                                 if ( ! data ) {
206                                                         AliWarning(Form(" SDigit Tree not found for  %s", AliQA::GetDetName(iDet))) ; 
207                                                 } else {
208                                                         qadm->Exec(taskIndex, data) ; 
209                                                 }
210                                                 break; 
211                                                 case AliQA::kDIGITS :
212                                                 GetLoader(iDet)->LoadDigits() ; 
213                                                 data = GetLoader(iDet)->TreeD() ; 
214                                                 if ( ! data ) {
215                                                         AliWarning(Form(" Digit Tree not found for  %s", AliQA::GetDetName(iDet))) ; 
216                                                 } else {
217                                                         qadm->Exec(taskIndex, data) ;
218                                                 }
219                                                 break; 
220                                                 case AliQA::kRECPOINTS :
221                                                 GetLoader(iDet)->LoadRecPoints() ; 
222                                                 data = GetLoader(iDet)->TreeR() ; 
223                                                 if (!data) {
224                                                         AliWarning(Form("RecPoints not found for %s", AliQA::GetDetName(iDet))) ; 
225                                                 } else {
226                                                         qadm->Exec(taskIndex, data) ; 
227                                                 }
228                                                 break; 
229                                                 case AliQA::kTRACKSEGMENTS :
230                                                 break; 
231                                                 case AliQA::kRECPARTICLES :
232                                                 break; 
233                                                 case AliQA::kESDS :
234                                                 qadm->Exec(taskIndex, fESD) ;
235                                                 break; 
236                                                 case AliQA::kNTASKINDEX :
237                                                 break; 
238                                 } //task switch
239                                 //qadm->Increment() ; 
240                         } //data maker exist
241                 } // detector loop
242         } // event loop 
243 //      // Save QA data for all detectors
244         rv = Finish(taskIndex, mode) ;
245
246         return rv ; 
247 }
248
249 //_____________________________________________________________________________
250 Bool_t AliQADataMakerSteer::Finish(const AliQA::TASKINDEX taskIndex, const char * mode) 
251 {
252         // write output to file for all detectors
253         for (UInt_t iDet = 0; iDet < fgkNDetectors ; iDet++) {
254                 if (IsSelected(AliQA::GetDetName(iDet))) {
255                         AliQADataMaker * qadm = GetQADataMaker(iDet, mode) ;
256                         if (qadm) {
257                                 qadm->EndOfCycle(taskIndex) ; 
258                         }
259                 }
260         }
261         return kTRUE ; 
262 }
263
264 //_____________________________________________________________________________
265 TObjArray * AliQADataMakerSteer::GetFromOCDB(AliQA::DETECTORINDEX det, AliQA::TASKINDEX task, const char * year) const 
266 {
267         // Retrieve the list of QA data for a given detector and a given task 
268         TObjArray * rv = NULL ;
269         TString tmp(AliQA::GetQARefStorage()) ; 
270         if ( tmp.IsNull() ) { 
271                 AliError("No storage defined, use AliQA::SetQARefStorage") ; 
272                 return NULL ; 
273         }       
274         AliCDBManager* man = AliCDBManager::Instance() ; 
275         if ( ! man->IsDefaultStorageSet() ) {
276                 TString tmp(AliQA::GetQARefDefaultStorage()) ; 
277                 tmp.Append(year) ; 
278                 tmp.Append("/") ; 
279                 man->SetDefaultStorage(tmp.Data()) ;            
280                 man->SetSpecificStorage(Form("%s/*", AliQA::GetQAOCDBDirName()), AliQA::GetQARefStorage()) ;
281         }
282         char detOCDBDir[10] ; 
283         sprintf(detOCDBDir, "%s/%s/%s", AliQA::GetQAOCDBDirName(), AliQA::GetDetName((Int_t)det), AliQA::GetRefOCDBDirName()) ; 
284         AliInfo(Form("Retrieving reference data from %s/%s for %s", AliQA::GetQARefStorage(), detOCDBDir, AliQA::GetTaskName(task).Data())) ; 
285         AliCDBEntry* entry = man->Get(detOCDBDir, 0) ; //FIXME 0 --> Run Number
286         TList * listDetQAD = dynamic_cast<TList *>(entry->GetObject()) ;
287         if ( listDetQAD ) 
288                 rv = dynamic_cast<TObjArray *>(listDetQAD->FindObject(AliQA::GetTaskName(task))) ; 
289         return rv ; 
290 }
291
292 //_____________________________________________________________________________
293 AliLoader * AliQADataMakerSteer::GetLoader(Int_t iDet)
294 {
295         // get the loader for a detector
296         
297         TString detName = AliQA::GetDetName(iDet) ;
298     fLoader[iDet] = fRunLoader->GetLoader(detName + "Loader");
299         if (fLoader[iDet]) 
300                 return fLoader[iDet] ;
301         
302         // load the QA data maker object
303         TPluginManager* pluginManager = gROOT->GetPluginManager() ;
304         TString loaderName = "Ali" + detName + "Loader" ;
305
306         AliLoader * loader = NULL ;
307         // first check if a plugin is defined for the quality assurance data maker
308         TPluginHandler* pluginHandler = pluginManager->FindHandler("AliLoader", detName) ;
309         // if not, add a plugin for it
310         if (!pluginHandler) {
311                 AliDebug(1, Form("defining plugin for %s", loaderName.Data())) ;
312                 TString libs = gSystem->GetLibraries() ;
313                 if (libs.Contains("lib" + detName + "base.so") || (gSystem->Load("lib" + detName + "base.so") >= 0)) {
314                         pluginManager->AddHandler("AliQADataMaker", detName, loaderName, detName + "loader", loaderName + "()") ;
315                 } else {
316                         pluginManager->AddHandler("AliLoader", detName, loaderName, detName, loaderName + "()") ;
317                 }
318                 pluginHandler = pluginManager->FindHandler("AliLoader", detName) ;
319         }
320         if (pluginHandler && (pluginHandler->LoadPlugin() == 0)) {
321                 loader = (AliLoader *) pluginHandler->ExecPlugin(0) ;
322         }
323         if (loader) 
324                 fLoader[iDet] = loader ;
325         return loader ;
326 }
327
328 //_____________________________________________________________________________
329 AliQADataMaker * AliQADataMakerSteer::GetQADataMaker(const Int_t iDet, const char * mode )
330 {
331         // get the quality assurance data maker for a detector
332         
333         if (fQADataMaker[iDet]) 
334                 return fQADataMaker[iDet] ;
335         
336         AliQADataMaker * qadm = NULL ;
337         
338         if (fFirst) {
339                 // load the QA data maker object
340                 TPluginManager* pluginManager = gROOT->GetPluginManager() ;
341                 TString detName = AliQA::GetDetName(iDet) ;
342                 TString tmp(mode) ; 
343                 if (tmp.Contains("sim")) 
344                         tmp.ReplaceAll("s", "S") ; 
345                 else if (tmp.Contains("rec")) 
346                         tmp.ReplaceAll("r", "R") ; 
347                 TString qadmName = "Ali" + detName + "QADataMaker" + tmp ;
348
349                 // first check if a plugin is defined for the quality assurance data maker
350                 TPluginHandler* pluginHandler = pluginManager->FindHandler("AliQADataMaker", detName) ;
351                 // if not, add a plugin for it
352                 if (!pluginHandler) {
353                         AliDebug(1, Form("defining plugin for %s", qadmName.Data())) ;
354                         TString libs = gSystem->GetLibraries() ;
355                         if (libs.Contains("lib" + detName + mode + ".so") || (gSystem->Load("lib" + detName + mode + ".so") >= 0)) {
356                                 pluginManager->AddHandler("AliQADataMaker", detName, qadmName, detName + "qadm", qadmName + "()") ;
357                         } else {
358                                 pluginManager->AddHandler("AliQADataMaker", detName, qadmName, detName, qadmName + "()") ;
359                         }
360                         pluginHandler = pluginManager->FindHandler("AliQADataMaker", detName) ;
361                 }
362                 if (pluginHandler && (pluginHandler->LoadPlugin() == 0)) {
363                         qadm = (AliQADataMaker *) pluginHandler->ExecPlugin(0) ;
364                 }
365                 if (qadm) 
366                         fQADataMaker[iDet] = qadm ;
367         }
368         return qadm ;
369 }
370
371 //_____________________________________________________________________________
372 Bool_t AliQADataMakerSteer::Init(const AliQA::TASKINDEX taskIndex, const char * mode, const  char * input )
373 {
374         // Initialize the event source and QA data makers
375         
376         if (taskIndex == AliQA::kRAWS) { 
377                 if (!fRawReader) {
378                         TString fileName(input);
379                         if (fileName.EndsWith("/")) {
380                                 fRawReader = new AliRawReaderFile(fileName);
381                         } else if (fileName.EndsWith(".root")) {
382                                 fRawReader = new AliRawReaderRoot(fileName);
383                         } else if (!fileName.IsNull()) {
384                                 fRawReader = new AliRawReaderDate(fileName);
385                                 fRawReader->SelectEvents(7);
386                         }
387                 }
388             if ( ! fRawReader ) 
389                         return kFALSE ; 
390                 fRawReaderDelete = kTRUE ; 
391                 fRawReader->NextEvent() ; 
392                 fRunNumber = fRawReader->GetRunNumber() ; 
393                 AliCDBManager::Instance()->SetRun(fRunNumber) ; 
394                 fRawReader->RewindEvents();
395                 fNumberOfEvents = 999999 ;
396                 if ( fMaxEvents < 0 ) 
397                         fMaxEvents = fNumberOfEvents ; 
398                 } else if (taskIndex == AliQA::kESDS) {
399                 if (!gSystem->AccessPathName("AliESDs.root")) { // AliESDs.root exists
400                         TFile * esdFile = TFile::Open("AliESDs.root") ;
401                         fESDTree = dynamic_cast<TTree *> (esdFile->Get("esdTree")) ; 
402                         if ( !fESDTree ) {
403                                 AliError("esdTree not found") ; 
404                                 return kFALSE ; 
405                         } else {
406                                 fESD     = new AliESDEvent() ;
407                                 fESD->ReadFromTree(fESDTree) ;
408                                 fESDTree->GetEntry(0) ; 
409                                 fRunNumber = fESD->GetRunNumber() ; 
410                                 fNumberOfEvents = fESDTree->GetEntries() ;
411                                 if ( fMaxEvents < 0 ) 
412                                         fMaxEvents = fNumberOfEvents ; 
413                         }
414                 } else {
415                         AliError("AliESDs.root not found") ; 
416                         return kFALSE ; 
417                 }                       
418         } else {
419                 if ( !InitRunLoader() ) { 
420                         AliWarning("No Run Loader not found") ; 
421                 } else {
422                         fNumberOfEvents = fRunLoader->GetNumberOfEvents() ;
423                         if ( fMaxEvents < 0 ) 
424                                 fMaxEvents = fNumberOfEvents ; 
425
426                 }
427         }
428                 // Initialize all QA data makers for all detectors
429         for (UInt_t iDet = 0; iDet < fgkNDetectors ; iDet++) {
430
431                 if (IsSelected(AliQA::GetDetName(iDet))) {
432                         AliQADataMaker * qadm = GetQADataMaker(iDet, mode) ;
433                         if (!qadm) {
434                                 AliError(Form("AliQADataMaker not found for %s", AliQA::GetDetName(iDet))) ; 
435                                 fDetectorsW.ReplaceAll(AliQA::GetDetName(iDet), "") ; 
436                         } else {
437                                 AliDebug(1, Form("Data Maker found for %s", qadm->GetName())) ; 
438                                 qadm->Init(taskIndex, fRunNumber, GetQACycles(iDet)) ;
439                                 qadm->StartOfCycle(taskIndex, fCycleSame) ;
440                         }
441                 }
442         } 
443         fFirst = kFALSE ;
444         return kTRUE ; 
445 }
446
447 //_____________________________________________________________________________
448 Bool_t AliQADataMakerSteer::InitRunLoader()
449 {
450         // get or create the run loader
451         if (fRunLoader) {
452                 fCycleSame = kTRUE ; 
453                 return kTRUE ;
454         } 
455                 
456         if (!gSystem->AccessPathName(fGAliceFileName.Data())) { // galice.root exists
457     // load all base libraries to get the loader classes
458                 TString libs = gSystem->GetLibraries() ;
459                 for (UInt_t iDet = 0; iDet < fgkNDetectors; iDet++) {
460                         if (!IsSelected(AliQA::GetDetName(iDet))) 
461                                 continue ; 
462                         TString detName = AliQA::GetDetName(iDet) ;
463                         if (detName == "HLT") 
464                                 continue;
465                         if (libs.Contains("lib" + detName + "base.so")) 
466                                 continue;
467                         gSystem->Load("lib" + detName + "base.so");
468                 }
469                 fRunLoader = AliRunLoader::Open(fGAliceFileName.Data());
470                 if (!fRunLoader) {
471                         AliError(Form("no run loader found in file %s", fGAliceFileName.Data()));
472                         return kFALSE;
473                 }
474                 fRunLoader->CdGAFile();
475                 if (fRunLoader->LoadgAlice() == 0) {
476                         gAlice = fRunLoader->GetAliRun();
477                 }
478
479                 if (!gAlice) {
480                         AliError(Form("no gAlice object found in file %s", fGAliceFileName.Data()));
481                         return kFALSE;
482                 }
483
484         } else {               // galice.root does not exist
485                 AliError(Form("the file %s does not exist", fGAliceFileName.Data()));
486                 return kFALSE;
487     }
488
489   return kTRUE;
490 }
491
492 //_____________________________________________________________________________
493 Bool_t AliQADataMakerSteer::IsSelected(const char * det) 
494 {
495         // check whether detName is contained in detectors
496         // if yes, it is removed from detectors
497         
498         const TString detName(det) ;
499         // check if all detectors are selected
500         if ((fDetectors.CompareTo("ALL") == 0) ||
501                 fDetectors.BeginsWith("ALL ") ||
502                 fDetectors.EndsWith(" ALL") ||
503                 fDetectors.Contains(" ALL ")) {
504                 fDetectors = "ALL";
505                 return kTRUE;
506         }
507         
508         // search for the given detector
509         Bool_t rv = kFALSE;
510         //AliInfo(Form("SSSSSSSSSSSSS fd = %s det = %s ", fDetectors.Data(), det)) ; 
511         if ((fDetectors.CompareTo(detName) == 0) ||
512                 fDetectors.BeginsWith(detName+" ") ||
513                 fDetectors.EndsWith(" "+detName) ||
514                 fDetectors.Contains(" "+detName+" ")) {
515                 //              fDetectors.ReplaceAll(detName, "");
516                 rv = kTRUE;
517         }
518         
519         // clean up the detectors string
520         //      while (fDetectors.Contains("  ")) 
521         //              fDetectors.ReplaceAll("  ", " ");
522         //      while (fDetectors.BeginsWith(" ")) 
523         //              fDetectors.Remove(0, 1);
524         //      while (fDetectors.EndsWith(" ")) 
525         //              fDetectors.Remove(fDetectors.Length()-1, 1);
526         
527         return rv ;
528 }
529
530 //_____________________________________________________________________________
531 Bool_t AliQADataMakerSteer::Merge(const Int_t runNumber) const
532 {
533         // Merge all the cycles from all detectors in one single file per run
534         char cmd[80] ;
535         if ( runNumber == -1 )
536                 sprintf(cmd, ".! ls *%s*.*.*.root > tempo.txt", AliQA::GetQADataFileName()) ; 
537         else 
538                 sprintf(cmd, ".! ls *%s*.%d.*.root > tempo.txt", AliQA::GetQADataFileName(), runNumber) ; 
539         gROOT->ProcessLine(cmd) ;
540         ifstream in("tempo.txt") ; 
541         const Int_t runMax = 10 ;  
542         TString file[AliQA::kNDET*runMax] ;
543         Int_t run[AliQA::kNDET*runMax] ;
544         
545         Int_t index = 0 ; 
546         while ( 1 ) {
547                 in >> file[index] ; 
548                 if ( !in.good() ) 
549                         break ; 
550                 AliInfo(Form("index = %d file = %s", index, (file[index]).Data())) ; 
551                 index++ ;
552         }
553         
554         if ( index == 0 ) { 
555                 AliError(Form("run number %d not found", runNumber)) ; 
556                 return kFALSE ; 
557         }
558         
559         Int_t runIndex    = 0 ;  
560         Int_t runIndexMax = 0 ; 
561         char stmp[10] ; 
562         sprintf(stmp, ".%s.", AliQA::GetQADataFileName()) ; 
563         for (Int_t ifile = 0 ; ifile < index ; ifile++) {
564                 TString tmp(file[ifile]) ; 
565                 tmp.ReplaceAll(".root", "") ; 
566                 TString det = tmp(0, tmp.Index(".")) ; 
567                 tmp.Remove(0, tmp.Index(stmp)+4) ; 
568                 TString ttmp = tmp(0, tmp.Index(".")) ; 
569                 Int_t newRun = ttmp.Atoi() ;
570                 for (Int_t irun = 0; irun <= runIndexMax; irun++) {
571                         if (newRun == run[irun]) 
572                                 break ; 
573                         run[runIndex] = newRun ; 
574                         runIndex++ ; 
575                 }
576                 runIndexMax = runIndex ; 
577                 ttmp = tmp(tmp.Index(".")+1, tmp.Length()) ; 
578                 Int_t cycle = ttmp.Atoi() ;  
579                 AliDebug(1, Form("%s : det = %s run = %d cycle = %d \n", file[ifile].Data(), det.Data(), newRun, cycle)) ; 
580         }
581         for (Int_t irun = 0 ; irun < runIndexMax ; irun++) {
582                 TFileMerger merger ; 
583                 char outFileName[20] ; 
584                 sprintf(outFileName, "Merged.%s.%d.root", AliQA::GetQADataFileName(), run[irun]) ; 
585                 merger.OutputFile(outFileName) ; 
586                 for (Int_t ifile = 0 ; ifile < index-1 ; ifile++) {
587                         char pattern[100] ; 
588                         sprintf(pattern, "%s.%d.", AliQA::GetQADataFileName(), run[irun]) ; 
589                         TString tmp(file[ifile]) ; 
590                         if (tmp.Contains(pattern)) {
591                                 merger.AddFile(tmp) ; 
592                         }
593                 }
594                 merger.Merge() ; 
595         }
596         
597         return kTRUE ; 
598 }
599
600 //_____________________________________________________________________________
601 void AliQADataMakerSteer::Reset(const Bool_t sameCycle)
602 {
603         // Reset the default data members
604         for (UInt_t iDet = 0; iDet < fgkNDetectors; iDet++) {
605                 if (IsSelected(AliQA::GetDetName(iDet))) {
606                         fLoader[iDet] = NULL;
607                         if (fQADataMaker[iDet]) {
608                                 (fQADataMaker[iDet])->Reset(sameCycle) ; 
609                                 //delete fQADataMaker[iDet] ;
610                                 //fQADataMaker[iDet] = NULL ;
611                         }
612                 }
613         }
614
615         if (fRawReaderDelete) { 
616                 delete fRawReader ;
617                 fRawReader      = NULL ;
618         }
619
620         fCycleSame      = sameCycle ; 
621         fESD            = NULL ; 
622         fESDTree        = NULL ; 
623         fFirst          = kTRUE ;   
624         fNumberOfEvents = 999999 ;  
625 }
626
627 //_____________________________________________________________________________
628 TString AliQADataMakerSteer::Run(const char * detectors, AliRawReader * rawReader) 
629 {
630         //Runs all the QA data Maker for Raws only
631
632         fRawReader       = rawReader ;          
633         fDetectors       = detectors ; 
634         fDetectorsW      = detectors ; 
635
636         if ( !Init(AliQA::kRAWS, "rec") ) 
637                 return kFALSE ; 
638         fRawReaderDelete = kFALSE ; 
639
640         DoIt(AliQA::kRAWS, "rec") ; 
641         return  fDetectorsW ;
642 }
643
644 //_____________________________________________________________________________
645 TString AliQADataMakerSteer::Run(const char * detectors, const char * fileName) 
646 {
647         //Runs all the QA data Maker for Raws only
648  
649         fDetectors       = detectors ; 
650         fDetectorsW      = detectors ;  
651         
652         if ( !Init(AliQA::kRAWS, "rec", fileName) ) 
653                 return kFALSE ; 
654
655         DoIt(AliQA::kRAWS, "rec") ; 
656         return  fDetectorsW ;
657 }
658
659 //_____________________________________________________________________________
660 TString AliQADataMakerSteer::Run(const char * detectors, const AliQA::TASKINDEX taskIndex, const  char * fileName )
661 {
662         // Runs all the QA data Maker for every detector
663
664         fDetectors  = detectors ; 
665         fDetectorsW = detectors ; 
666
667         char * mode ; 
668         if ( (taskIndex == AliQA::kHITS) || (taskIndex == AliQA::kSDIGITS) || (taskIndex == AliQA::kDIGITS) ) 
669                 mode = "sim" ; 
670         else if ( (taskIndex == AliQA::kRAWS) || (taskIndex == AliQA::kRECPOINTS) || (taskIndex == AliQA::kESDS) )
671                 mode = "rec" ; 
672         else {
673                 AliError(Form("%s not implemented", AliQA::GetTaskName(taskIndex).Data())) ; 
674                 return "" ;
675         }
676
677         if ( !Init(taskIndex, mode, fileName) ) 
678                 return kFALSE ; 
679
680         DoIt(taskIndex, mode) ;
681         
682         return fDetectorsW ;
683
684 }
685
686 //_____________________________________________________________________________
687 Bool_t AliQADataMakerSteer::Save2OCDB(const Int_t runNumber, const char * year, const Int_t cycleNumber, const char * detectors) const
688 {
689         // take the locasl QA data merge into a single file and save in OCDB 
690         Bool_t rv = kTRUE ; 
691         TString tmp(AliQA::GetQARefStorage()) ; 
692         if ( tmp.IsNull() ) { 
693                 AliError("No storage defined, use AliQA::SetQARefStorage") ; 
694                 return kFALSE ; 
695         }
696         if ( !(tmp.Contains(AliQA::GetLabLocalOCDB()) || tmp.Contains(AliQA::GetLabAliEnOCDB())) ) {
697                 AliError(Form("%s is a wrong storage, use %s or %s", AliQA::GetQARefStorage(), AliQA::GetLabLocalOCDB().Data(), AliQA::GetLabAliEnOCDB().Data())) ; 
698                 return kFALSE ; 
699         }
700         TString sdet(detectors) ; 
701         sdet.ToUpper() ;
702         TFile * inputFile ; 
703         if ( sdet.Contains("ALL") ) {
704                 rv = Merge(runNumber) ; 
705                 if ( ! rv )
706                         return kFALSE ; 
707                 char inputFileName[20] ; 
708                 sprintf(inputFileName, "Merged.%s.%d.root", AliQA::GetQADataFileName(), runNumber) ; 
709                 inputFile = TFile::Open(inputFileName) ; 
710                 rv = SaveIt2OCDB(runNumber, inputFile, year) ; 
711         } else {
712                 for (Int_t index = 0; index < AliQA::kNDET; index++) {
713                         if (sdet.Contains(AliQA::GetDetName(index))) {
714                                 char inputFileName[20] ; 
715                                 sprintf(inputFileName, "%s.%s.%d.%d.root", AliQA::GetDetName(index), AliQA::GetQADataFileName(), runNumber, cycleNumber) ; 
716                                 inputFile = TFile::Open(inputFileName) ;                        
717                                 rv *= SaveIt2OCDB(runNumber, inputFile, year) ; 
718                         }
719                 }
720         }
721         return rv ; 
722 }
723
724 //_____________________________________________________________________________
725 Bool_t AliQADataMakerSteer::SaveIt2OCDB(const Int_t runNumber, TFile * inputFile, const char * year) const
726 {
727         // reads the TH1 from file and adds it to appropriate list before saving to OCDB
728         Bool_t rv = kTRUE ;
729         AliInfo(Form("Saving TH1s in %s to %s", inputFile->GetName(), AliQA::GetQARefStorage())) ; 
730         AliCDBManager* man = AliCDBManager::Instance() ; 
731         if ( ! man->IsDefaultStorageSet() ) {
732                 TString tmp(AliQA::GetQARefDefaultStorage()) ; 
733                 tmp.Append(year) ; 
734                 tmp.Append("?user=alidaq") ; 
735                 man->SetDefaultStorage(tmp.Data()) ; 
736                 man->SetSpecificStorage("*", AliQA::GetQARefStorage()) ; 
737         }
738         if(man->GetRun() < 0) 
739                 man->SetRun(runNumber);
740
741         AliCDBMetaData mdr ;
742         mdr.SetResponsible("yves schutz");
743
744         for ( Int_t detIndex = 0 ; detIndex < AliQA::kNDET ; detIndex++) {
745                 TDirectory * detDir = inputFile->GetDirectory(AliQA::GetDetName(detIndex)) ; 
746                 if ( detDir ) {
747                         AliInfo(Form("Entering %s", detDir->GetName())) ;
748                         char detOCDBDir[20] ;
749                         sprintf(detOCDBDir, "%s/%s/%s", AliQA::GetDetName(detIndex), AliQA::GetRefOCDBDirName(), AliQA::GetRefDataDirName()) ; 
750                         AliCDBId idr(detOCDBDir, runNumber, AliCDBRunRange::Infinity())  ;
751                         TList * listDetQAD = new TList() ;
752                         char listName[20] ; 
753                         sprintf(listName, "%s QA data Reference", AliQA::GetDetName(detIndex)) ; 
754                         mdr.SetComment("HMPID QA stuff");
755                         listDetQAD->SetName(listName) ; 
756                         TList * taskList = detDir->GetListOfKeys() ; 
757                         TIter nextTask(taskList) ; 
758                         TKey * taskKey ; 
759                         while ( (taskKey = dynamic_cast<TKey*>(nextTask())) ) {
760                                 TDirectory * taskDir = detDir->GetDirectory(taskKey->GetName()) ; 
761                                 AliInfo(Form("Saving %s", taskDir->GetName())) ; 
762                                 TObjArray * listTaskQAD = new TObjArray(100) ; 
763                                 listTaskQAD->SetName(taskKey->GetName()) ;
764                                 listDetQAD->Add(listTaskQAD) ; 
765                                 TList * histList = taskDir->GetListOfKeys() ; 
766                                 TIter nextHist(histList) ; 
767                                 TKey * histKey ; 
768                                 while ( (histKey = dynamic_cast<TKey*>(nextHist())) ) {
769                                         TObject * odata = taskDir->Get(histKey->GetName()) ; 
770                                         if ( odata->IsA()->InheritsFrom("TH1") ) {
771                                                 AliInfo(Form("Adding %s", histKey->GetName())) ;
772                                                 TH1 * hdata = static_cast<TH1*>(odata) ; 
773                                                 listTaskQAD->Add(hdata) ; 
774                                         }
775                                 }
776                         }
777                         man->Put(listDetQAD, idr, &mdr) ;
778                 }
779         }
780         return rv ; 
781 }       
782