]> git.uio.no Git - u/mrichter/AliRoot.git/blob - macros/qamaker.C
Macro checking if the current $ALICE_ROOT creates a geometry different w.r.t. to...
[u/mrichter/AliRoot.git] / macros / qamaker.C
1 /*
2  *  qamaker.C
3  *  
4  *
5  *  Created by Yves Schutz on 17.10.07.
6  *  Copyright 2007 __CERN__. All rights reserved.
7  *
8  */
9 #if !defined(__CINT__) || defined(__MAKECINT__)
10 #include "TStopwatch.h"
11 #include "AliQA.h"
12 #include "AliQADataMakerSteer.h"
13 #endif
14 void qamaker()
15 {
16         const char * detectors = "ALL" ; 
17         const char * rawFileName = "raw.root" ; 
18         AliQADataMakerSteer qas ; 
19         TStopwatch timer;
20         timer.Start();
21         qas.Run(detectors, AliQA::kRAWS, rawFileName);
22         qas.Run(detectors, AliQA::kHITS);
23         qas.Run(detectors, AliQA::kSDIGITS);
24         qas.Run(detectors, AliQA::kDIGITS);
25         qas.Run(detectors, AliQA::kRECPOINTS);
26         qas.Run(detectors, AliQA::kESDS);
27         timer.Stop();
28         timer.Print();
29 }
30
31
32