]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliQAChecker.cxx
Bug fix in proof mode when using folders.
[u/mrichter/AliRoot.git] / STEER / AliQAChecker.cxx
CommitLineData
421ab0fb 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// //
20// class for running the Quality Assurance Checker
21// //
22///////////////////////////////////////////////////////////////////////////////
23
4edbc5bc 24#include "AliCDBEntry.h"
b03591ab 25#include "AliQAManager.h"
96d67a8d 26#include "AliCDBStorage.h"
1aaf4118 27#include "AliRunInfo.h"
421ab0fb 28#include "AliLog.h"
29#include "AliModule.h"
4e25ac79 30#include "AliQAv1.h"
2e42b4d4 31#include "AliQAChecker.h"
32#include "AliQACheckerBase.h"
a2b64fbd 33#include "AliCorrQAChecker.h"
401b84d6 34#include "AliGlobalQAChecker.h"
44e45fac 35#include "AliGRPObject.h"
421ab0fb 36
a5fa6165 37#include <TKey.h>
421ab0fb 38#include <TObjArray.h>
cbae8032 39#include <TObjString.h>
a5fa6165 40#include <TPluginManager.h>
41#include <TROOT.h>
421ab0fb 42#include <TStopwatch.h>
43#include <TString.h>
a5fa6165 44#include <TSystem.h>
a4976ef3 45#include <TList.h>
a2b64fbd 46#include <TNtupleD.h>
421ab0fb 47
2e42b4d4 48ClassImp(AliQAChecker)
49 AliQAChecker * AliQAChecker::fgQAChecker = 0x0 ;
421ab0fb 50
51//_____________________________________________________________________________
2e42b4d4 52AliQAChecker::AliQAChecker(const char* name, const char* title) :
421ab0fb 53 TNamed(name, title),
a5fa6165 54 fDataFile(0x0),
7e88424f 55 fRunInfo(0x0),
56 fRunInfoOwner(kFALSE),
4edbc5bc 57 fRefFile(0x0),
57acd2d2 58 fFoundDetectors("."),
634696f5 59 fEventSpecie(AliRecoParam::kDefault),
60 fRun(0)
421ab0fb 61{
a5fa6165 62 // ctor: initialise checkers and open the data file
4e25ac79 63 for (Int_t det = 0 ; det < AliQAv1::kNDET ; det++)
a5fa6165 64 fCheckers[det] = NULL ;
421ab0fb 65}
66
67//_____________________________________________________________________________
2e42b4d4 68AliQAChecker::AliQAChecker(const AliQAChecker& qac) :
421ab0fb 69 TNamed(qac),
a5fa6165 70 fDataFile(qac.fDataFile),
7e88424f 71 fRunInfo(qac.fRunInfo),
72 fRunInfoOwner(kFALSE),
4edbc5bc 73 fRefFile(qac.fRefFile),
57acd2d2 74 fFoundDetectors(qac.fFoundDetectors),
634696f5 75 fEventSpecie(qac.fEventSpecie),
76 fRun(qac.fRun)
421ab0fb 77{
a5fa6165 78 // copy constructor
79
4e25ac79 80 for (Int_t det = 0 ; det < AliQAv1::kNDET ; det++)
a5fa6165 81 fCheckers[det] = NULL ;
421ab0fb 82}
83
84//_____________________________________________________________________________
2e42b4d4 85AliQAChecker& AliQAChecker::operator = (const AliQAChecker& qac)
421ab0fb 86{
87// assignment operator
88
2e42b4d4 89 this->~AliQAChecker();
90 new(this) AliQAChecker(qac);
421ab0fb 91 return *this;
92}
93
94//_____________________________________________________________________________
2e42b4d4 95AliQAChecker::~AliQAChecker()
421ab0fb 96{
97// clean up
7e88424f 98 if (fRunInfo)
99 delete fRunInfo ;
a4976ef3 100 delete [] fCheckers ;
4e25ac79 101 AliQAv1::Close() ;
421ab0fb 102}
103
104//_____________________________________________________________________________
2e42b4d4 105 AliQACheckerBase * AliQAChecker::GetDetQAChecker(Int_t det)
421ab0fb 106{
7ce961eb 107 // Gets the Quality Assurance checker for the detector specified by its name
108
109 if (fCheckers[det])
a5fa6165 110 return fCheckers[det];
111
401b84d6 112 AliQACheckerBase * qac = NULL ;
a5fa6165 113
4e25ac79 114 TString detName(AliQAv1::GetDetName(det)) ;
401b84d6 115
4e25ac79 116 if (det == AliQAv1::kGLOBAL) {
401b84d6 117 qac = new AliGlobalQAChecker() ;
4e25ac79 118 } else if (det == AliQAv1::kCORR) {
a2b64fbd 119 qac = new AliCorrQAChecker() ;
401b84d6 120 } else {
634696f5 121 AliDebugClass(AliQAv1::GetQADebugLevel(), Form("Retrieving QA checker for %s", detName.Data())) ;
401b84d6 122 TPluginManager* pluginManager = gROOT->GetPluginManager() ;
123 TString qacName = "Ali" + detName + "QAChecker" ;
124
125 // first check if a plugin is defined for the quality assurance checker
126 TPluginHandler* pluginHandler = pluginManager->FindHandler("AliQAChecker", detName.Data());
127 // if not, add a plugin for it
128 if (!pluginHandler) {
5379c4a3 129 //AliDebug(AliQAv1::GetQADebugLevel(), Form("defining plugin for %s", qacName.Data()));
401b84d6 130 TString libs = gSystem->GetLibraries();
7ce961eb 131
401b84d6 132 if (libs.Contains("lib" + detName + "base.so") || (gSystem->Load("lib" + detName + "base.so") >= 0))
133 pluginManager->AddHandler("AliQAChecker", detName, qacName, detName + "qac", qacName + "()");
134 else
135 pluginManager->AddHandler("AliQAChecker", detName, qacName, detName, qacName + "()");
a5fa6165 136
401b84d6 137 pluginHandler = pluginManager->FindHandler("AliQAChecker", detName);
a5fa6165 138
401b84d6 139 if (pluginHandler && (pluginHandler->LoadPlugin() == 0))
140 qac = (AliQACheckerBase *) pluginHandler->ExecPlugin(0);
a5fa6165 141
401b84d6 142 }
7ce961eb 143 }
401b84d6 144 if (qac)
145 fCheckers[det] = qac ;
146
147 return qac ;
a5fa6165 148}
cbae8032 149
a5fa6165 150//_____________________________________________________________________________
57acd2d2 151void AliQAChecker::GetRefSubDir(const char * det, const char * task, TDirectory *& dirFile, TObjArray **& dirOCDB)
a5fa6165 152{
153 // Opens and returns the file with the reference data
cbae8032 154 dirFile = NULL ;
4e25ac79 155 TString refStorage(AliQAv1::GetQARefStorage()) ;
4e25ac79 156 if (!refStorage.Contains(AliQAv1::GetLabLocalOCDB()) && !refStorage.Contains(AliQAv1::GetLabAliEnOCDB())) {
cf13d879 157 AliError(Form("%s is not a valid location for reference data", refStorage.Data())) ;
158 return ;
159 } else {
634696f5 160 AliQAManager* manQA = AliQAManager::QAManager(AliQAv1::GetTaskIndex(task)) ;
958ed851 161 dirOCDB = new TObjArray*[AliRecoParam::kNSpecies] ;
57acd2d2 162 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
958ed851 163 dirOCDB[specie] = NULL ;
4e25ac79 164 if ( !AliQAv1::Instance()->IsEventSpecieSet(specie) )
57acd2d2 165 continue ;
4e25ac79 166 AliQAv1::SetQARefDataDirName(specie) ;
b03591ab 167 if ( ! manQA->GetLock() ) {
4e25ac79 168 manQA->SetDefaultStorage(AliQAv1::GetQARefStorage()) ;
169 manQA->SetSpecificStorage("*", AliQAv1::GetQARefStorage()) ;
b03591ab 170 manQA->SetRun(AliCDBManager::Instance()->GetRun()) ;
171 manQA->SetLock() ;
57acd2d2 172 }
4e25ac79 173 char * detOCDBDir = Form("%s/%s/%s", det, AliQAv1::GetRefOCDBDirName(), AliQAv1::GetRefDataDirName()) ;
b03591ab 174 AliCDBEntry * entry = manQA->Get(detOCDBDir, manQA->GetRun()) ;
57acd2d2 175 if (entry) {
eca4fa66 176 TList * listDetQAD =static_cast<TList *>(entry->GetObject()) ;
177 if ( strcmp(listDetQAD->ClassName(), "TList") != 0 ) {
178 AliError(Form("Expected a Tlist and found a %s for detector %s", listDetQAD->ClassName(), det)) ;
0e5b0b02 179 listDetQAD = NULL ;
eca4fa66 180 continue ;
0e5b0b02 181 }
182 if ( listDetQAD ) {
183 TIter next(listDetQAD) ;
184 TObjArray * ar ;
185 while ( (ar = (TObjArray*)next()) )
958ed851 186 dirOCDB[specie] = static_cast<TObjArray *>(listDetQAD->FindObject(Form("%s/%s", task, AliRecoParam::GetEventSpecieName(specie)))) ;
0e5b0b02 187 }
57acd2d2 188 }
cbae8032 189 }
190 }
421ab0fb 191}
192
a4976ef3 193//_____________________________________________________________________________
2e42b4d4 194AliQAChecker * AliQAChecker::Instance()
a4976ef3 195{
196 // returns unique instance of the checker
197 if ( ! fgQAChecker )
2e42b4d4 198 fgQAChecker = new AliQAChecker() ;
a4976ef3 199 return fgQAChecker ;
200}
201
cbae8032 202//_____________________________________________________________________________
7e88424f 203void AliQAChecker::LoadRunInfoFromGRP()
cbae8032 204{
205 AliCDBManager* man = AliCDBManager::Instance() ;
4e25ac79 206 AliCDBEntry* entry = man->Get(AliQAv1::GetGRPPath().Data());
44e45fac 207 AliGRPObject* grpObject = 0x0;
208 if (entry) {
209
eca4fa66 210 TMap* m = static_cast<TMap*>(entry->GetObject()); // old GRP entry
44e45fac 211
212 if (m) {
5379c4a3 213 AliDebug(AliQAv1::GetQADebugLevel(), "It is a map");
44e45fac 214 //m->Print();
215 grpObject = new AliGRPObject();
216 grpObject->ReadValuesFromMap(m);
217 }
218
219 else {
5379c4a3 220 AliDebug(AliQAv1::GetQADebugLevel(), "It is a new GRP object");
eca4fa66 221 grpObject = static_cast<AliGRPObject*>(entry->GetObject()); // new GRP entry
44e45fac 222 }
223
224 entry->SetOwner(0);
225 AliCDBManager::Instance()->UnloadFromCache("GRP/GRP/Data");
226 }
227
228 if (!grpObject) {
229 AliFatal("No GRP entry found in OCDB!");
cbae8032 230 }
44e45fac 231
232 TString lhcState = grpObject->GetLHCState();
233 if (lhcState==AliGRPObject::GetInvalidString()) {
234 AliError("GRP/GRP/Data entry: missing value for the LHC state ! Using UNKNOWN");
235 lhcState = "UNKNOWN";
236 }
237
238 TString beamType = grpObject->GetBeamType();
239 if (beamType==AliGRPObject::GetInvalidString()) {
240 AliError("GRP/GRP/Data entry: missing value for the beam type ! Using UNKNOWN");
241 beamType = "UNKNOWN";
cbae8032 242 }
44e45fac 243
244 Float_t beamEnergy = grpObject->GetBeamEnergy();
245 if (beamEnergy==AliGRPObject::GetInvalidFloat()) {
246 AliError("GRP/GRP/Data entry: missing value for the beam energy ! Using 0");
247 beamEnergy = 0;
cbae8032 248 }
44e45fac 249
250 TString runType = grpObject->GetRunType();
251 if (runType==AliGRPObject::GetInvalidString()) {
252 AliError("GRP/GRP/Data entry: missing value for the run type ! Using UNKNOWN");
253 runType = "UNKNOWN";
7e88424f 254 }
44e45fac 255
256 Int_t activeDetectors = grpObject->GetDetectorMask();
257 if (activeDetectors==AliGRPObject::GetInvalidInt()) {
258 AliError("GRP/GRP/Data entry: missing value for the detector mask ! Using 1074790399");
259 activeDetectors = 1074790399;
cbae8032 260 }
44e45fac 261
262 fRunInfo = new AliRunInfo(lhcState, beamType, beamEnergy, runType, activeDetectors);
263
7e88424f 264 fRunInfoOwner = kTRUE ;
57acd2d2 265
266 // set the event specie
267 fEventSpecie = AliRecoParam::kDefault ;
268 if (strcmp(runType,"PHYSICS")) {
269 // Not a physics run, the event specie is set to kCalib
270 fEventSpecie = AliRecoParam::kCalib ;
271 return;
272 }
273 if (strcmp(lhcState,"STABLE_BEAMS") == 0) {
274 // Heavy ion run (any beam tha is not pp, the event specie is set to kHighMult
275 fEventSpecie = AliRecoParam::kHighMult ;
276 if ((strcmp(beamType,"p-p") == 0) ||
277 (strcmp(beamType,"p-") == 0) ||
278 (strcmp(beamType,"-p") == 0) ||
279 (strcmp(beamType,"P-P") == 0) ||
280 (strcmp(beamType,"P-") == 0) ||
281 (strcmp(beamType,"-P") == 0)) {
282 // Proton run, the event specie is set to kLowMult
283 fEventSpecie = AliRecoParam::kLowMult ;
284 }
285 else if (strcmp(beamType,"-") == 0) {
286 // No beams, we assume cosmic data
287 fEventSpecie = AliRecoParam::kCosmic ;
288 }
289 else if (strcmp(beamType,"UNKNOWN") == 0) {
290 // No LHC beam information is available, we use the default event specie
291 fEventSpecie = AliRecoParam::kDefault ;
292 }
293 }
cbae8032 294}
295
421ab0fb 296//_____________________________________________________________________________
9c980fe5 297Bool_t AliQAChecker::Run(const char * fileName, AliDetectorRecoParam * recoParam)
421ab0fb 298{
44ed7a66 299 // run the Quality Assurance Checker for all tasks Hits, SDigits, Digits, DigitsR, RecPoints, TrackSegments, RecParticles and ESDs
57acd2d2 300 // starting from data in file
421ab0fb 301 TStopwatch stopwatch;
302 stopwatch.Start();
c39ee44c 303
a5fa6165 304 //search for all detectors QA directories
4e25ac79 305 TList * detKeyList = AliQAv1::GetQADataFile(fileName)->GetListOfKeys() ;
a5fa6165 306 TIter nextd(detKeyList) ;
307 TKey * detKey ;
eca4fa66 308 while ( (detKey = static_cast<TKey *>(nextd()) ) ) {
5379c4a3 309 AliDebug(AliQAv1::GetQADebugLevel(), Form("Found %s", detKey->GetName())) ;
a5fa6165 310 //Check which detector
311 TString detName ;
312 TString detNameQA(detKey->GetName()) ;
313 Int_t det ;
4e25ac79 314 for ( det = 0; det < AliQAv1::kNDET ; det++) {
315 detName = AliQAv1::GetDetName(det) ;
a5fa6165 316 if (detNameQA.Contains(detName)) {
57acd2d2 317 fFoundDetectors+=detName ;
318 fFoundDetectors+="." ;
319 break ;
a5fa6165 320 }
321 }
4e25ac79 322 TDirectory * detDir = AliQAv1::GetQADataFile(fileName)->GetDirectory(detKey->GetName()) ;
a5fa6165 323 TList * taskKeyList = detDir->GetListOfKeys() ;
324 TIter nextt(taskKeyList) ;
325 TKey * taskKey ;
326 // now search for the tasks dir
327 while ( (taskKey = static_cast<TKey *>(nextt()) ) ) {
328 TString taskName( taskKey->GetName() ) ;
5379c4a3 329 AliDebug(AliQAv1::GetQADebugLevel(), Form("Found %s", taskName.Data())) ;
a5fa6165 330 TDirectory * taskDir = detDir->GetDirectory(taskName.Data()) ;
331 taskDir->cd() ;
2e42b4d4 332 AliQACheckerBase * qac = GetDetQAChecker(det) ;
a5fa6165 333 if (qac)
5379c4a3 334 AliDebug(AliQAv1::GetQADebugLevel(), Form("QA checker found for %s", detName.Data())) ;
a5fa6165 335 if (!qac)
57acd2d2 336 AliFatal(Form("QA checker not found for %s", detName.Data())) ;
4e25ac79 337 AliQAv1::ALITASK_t index = AliQAv1::kNULLTASK ;
338 if ( taskName == AliQAv1::GetTaskName(AliQAv1::kHITS) )
339 index = AliQAv1::kSIM ;
340 if ( taskName == AliQAv1::GetTaskName(AliQAv1::kSDIGITS) )
341 index = AliQAv1::kSIM ;
342 if ( taskName == AliQAv1::GetTaskName(AliQAv1::kDIGITS) )
343 index = AliQAv1::kSIM ;
d62b07c8 344 if ( taskName == AliQAv1::GetTaskName(AliQAv1::kRAWS) )
345 index = AliQAv1::kRAW ;
44ed7a66 346 if ( taskName == AliQAv1::GetTaskName(AliQAv1::kDIGITSR) )
347 index = AliQAv1::kREC ;
4e25ac79 348 if ( taskName == AliQAv1::GetTaskName(AliQAv1::kRECPOINTS) )
349 index = AliQAv1::kREC ;
350 if ( taskName == AliQAv1::GetTaskName(AliQAv1::kTRACKSEGMENTS) )
351 index = AliQAv1::kREC ;
352 if ( taskName == AliQAv1::GetTaskName(AliQAv1::kRECPARTICLES) )
353 index = AliQAv1::kREC ;
354 if ( taskName == AliQAv1::GetTaskName(AliQAv1::kESDS) )
355 index = AliQAv1::kESD ;
356 qac->Init(AliQAv1::DETECTORINDEX_t(det)) ;
57acd2d2 357
358 TDirectory * refDir = NULL ;
359 TObjArray ** refOCDBDir = NULL ;
360 GetRefSubDir(detNameQA.Data(), taskName.Data(), refDir, refOCDBDir) ;
4edbc5bc 361 qac->SetRefandData(refDir, refOCDBDir, taskDir) ;
9c980fe5 362 qac->Run(index, recoParam) ;
57acd2d2 363 }
4edbc5bc 364 }
c39ee44c 365 TString detList ;
4e25ac79 366 for ( Int_t det = 0; det < AliQAv1::kNDET; det++) {
2a022cb2 367 if (fFoundDetectors.Contains(AliQAv1::GetDetName(det))) {
368 detList += AliQAv1::GetDetName(det) ;
c39ee44c 369 detList += " " ;
2a022cb2 370 fFoundDetectors.ReplaceAll(AliQAv1::GetDetName(det), "") ;
371 AliQAv1::Instance()->Show(AliQAv1::GetDetIndex(AliQAv1::GetDetName(det))) ;
a5fa6165 372 }
421ab0fb 373 }
c39ee44c 374 AliInfo(Form("QA performed for following detectors: %s", detList.Data())) ;
57acd2d2 375 return kTRUE ;
421ab0fb 376}
377
a4976ef3 378//_____________________________________________________________________________
9c980fe5 379Bool_t AliQAChecker::Run(AliQAv1::DETECTORINDEX_t det, AliQAv1::TASKINDEX_t task, TObjArray ** list, AliDetectorRecoParam * recoParam)
a4976ef3 380{
d6372ce8 381 // run the Quality Assurance Checker for detector det, for task task starting from data in list
a4976ef3 382
d6372ce8 383 AliQACheckerBase * qac = GetDetQAChecker(det) ;
384 if (qac)
5379c4a3 385 AliDebug(AliQAv1::GetQADebugLevel(), Form("QA checker found for %s", AliQAv1::GetDetName(det).Data())) ;
d6372ce8 386 if (!qac)
4e25ac79 387 AliError(Form("QA checker not found for %s", AliQAv1::GetDetName(det).Data())) ;
a4976ef3 388
4e25ac79 389 AliQAv1::ALITASK_t index = AliQAv1::kNULLTASK ;
390 if ( task == AliQAv1::kRAWS )
391 index = AliQAv1::kRAW ;
392 else if ( task == AliQAv1::kHITS )
393 index = AliQAv1::kSIM ;
394 else if ( task == AliQAv1::kSDIGITS )
395 index = AliQAv1::kSIM ;
396 else if ( task == AliQAv1::kDIGITS )
397 index = AliQAv1::kSIM ;
44ed7a66 398 else if ( task == AliQAv1::kDIGITSR )
399 index = AliQAv1::kREC ;
4e25ac79 400 else if ( task == AliQAv1::kRECPOINTS )
401 index = AliQAv1::kREC ;
402 else if ( task == AliQAv1::kTRACKSEGMENTS )
403 index = AliQAv1::kREC ;
404 else if ( task == AliQAv1::kRECPARTICLES )
405 index = AliQAv1::kREC ;
406 else if ( task == AliQAv1::kESDS )
407 index = AliQAv1::kESD ;
4edbc5bc 408
57acd2d2 409 TDirectory * refDir = NULL ;
410 TObjArray ** refOCDBDir = NULL ;
411 qac->Init(det) ;
4e25ac79 412 GetRefSubDir(AliQAv1::GetDetName(det), AliQAv1::GetTaskName(task), refDir, refOCDBDir) ;
57acd2d2 413 qac->SetRefandData(refDir, refOCDBDir) ;
9c980fe5 414 qac->Run(index, list, recoParam) ;
634696f5 415
416 // make the image
417 qac->MakeImage(list, task, AliQAv1::Mode(task)) ;
418
d6372ce8 419 return kTRUE ;
31316597 420}
57acd2d2 421
422//_____________________________________________________________________________
9c980fe5 423Bool_t AliQAChecker::Run(AliQAv1::DETECTORINDEX_t det, AliQAv1::TASKINDEX_t task, TNtupleD ** list, AliDetectorRecoParam * recoParam)
57acd2d2 424{
425 // run the Quality Assurance Checker for detector det, for task task starting from data in list
426
427 AliQACheckerBase * qac = GetDetQAChecker(det) ;
428 if (qac)
5379c4a3 429 AliDebug(AliQAv1::GetQADebugLevel(), Form("QA checker found for %s", AliQAv1::GetDetName(det).Data())) ;
57acd2d2 430 if (!qac)
4e25ac79 431 AliError(Form("QA checker not found for %s", AliQAv1::GetDetName(det).Data())) ;
57acd2d2 432
4e25ac79 433 AliQAv1::ALITASK_t index = AliQAv1::kNULLTASK ;
434 if ( task == AliQAv1::kRAWS )
435 index = AliQAv1::kRAW ;
436 else if ( task == AliQAv1::kHITS )
437 index = AliQAv1::kSIM ;
438 else if ( task == AliQAv1::kSDIGITS )
439 index = AliQAv1::kSIM ;
440 else if ( task == AliQAv1::kDIGITS )
441 index = AliQAv1::kSIM ;
44ed7a66 442 else if ( task == AliQAv1::kDIGITSR )
443 index = AliQAv1::kREC ;
4e25ac79 444 else if ( task == AliQAv1::kRECPOINTS )
445 index = AliQAv1::kREC ;
446 else if ( task == AliQAv1::kTRACKSEGMENTS )
447 index = AliQAv1::kREC ;
448 else if ( task == AliQAv1::kRECPARTICLES )
449 index = AliQAv1::kREC ;
450 else if ( task == AliQAv1::kESDS )
451 index = AliQAv1::kESD ;
57acd2d2 452
453 TDirectory * refDir = NULL ;
454 TObjArray ** refOCDBDir = NULL ;
455 qac->Init(det) ;
4e25ac79 456 GetRefSubDir(AliQAv1::GetDetName(det), AliQAv1::GetTaskName(task), refDir, refOCDBDir) ;
57acd2d2 457 qac->SetRefandData(refDir, refOCDBDir) ;
9c980fe5 458 qac->Run(index, list, recoParam) ;
634696f5 459
57acd2d2 460 return kTRUE ;
461}