]> git.uio.no Git - u/mrichter/AliRoot.git/blame - macros/qamaker.C
Include cstdlib (gcc 4.3.0)
[u/mrichter/AliRoot.git] / macros / qamaker.C
CommitLineData
d28de24c 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
14void qamaker()
15{
1a334be0 16 const char * detectors = "ALL" ;
17 const char * rawFileName = "raw.root" ;
d28de24c 18 AliQADataMakerSteer qas ;
19 TStopwatch timer;
20 timer.Start();
1a334be0 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);
d28de24c 27 timer.Stop();
28 timer.Print();
29}
30
31
32