]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ACORDE/AliACORDEQADataMakerRec.h
replacing AliHLTTPCRootTypes.h by Rtypes.h
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEQADataMakerRec.h
CommitLineData
51504028 1#ifndef AliACORDEQADataMakerRec_H
2#define AliACORDEQADataMakerRec_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6
7
8//
9// Produces the data needed to calculate the quality assurance.
10// All data must be mergeable objects.
11
12// Authors:
13//
14// Luciano Diaz Gonzalez <luciano.diaz@nucleares.unam.mx> (ICN-UNAM)
15// Mario Rodriguez Cahuantzi <mrodrigu@mail.cern.ch> (FCFM-BUAP)
16// Arturo Fernandez Tellez <afernan@mail.cern.ch (FCFM-BUAP)
17//
18// Created: June 13th 2008
19//---
20
21
22// --- ROOT system ---
23
24
25
26// --- Standard library ---
27// --- AliRoot header files ---
28
29#include "AliQADataMakerRec.h"
7626fda4 30#include <TLine.h>
92664bc8 31
51504028 32class AliACORDEQADataMakerRec: public AliQADataMakerRec {
33
34public:
35 AliACORDEQADataMakerRec() ; // constructor
36 AliACORDEQADataMakerRec(const AliACORDEQADataMakerRec& qadm) ;
37 AliACORDEQADataMakerRec& operator = (const AliACORDEQADataMakerRec& qadm) ;
92664bc8 38 virtual ~AliACORDEQADataMakerRec(); // destructor
51504028 39
40private:
41 virtual void InitRaws() ; //book Digit QA histo
44ed7a66 42 virtual void InitDigits() ; //book Digit QA histo
43 virtual void MakeDigits(TTree* digitsTree) ; //Fill Digit QA histo
6252ceeb 44 virtual void MakeDigits() {} //Dummy for the moment
51504028 45 virtual void InitRecPoints(); //book cluster QA histo
46 virtual void InitESDs() ; //book ESD QA histo
47 virtual void MakeRaws(AliRawReader* rawReader) ;
51504028 48 virtual void MakeESDs(AliESDEvent * esd) ; //Fill hit QA histo
4e25ac79 49 virtual void EndOfDetectorCycle(AliQAv1::TASKINDEX_t, TObjArray ** list) ;
92664bc8 50 virtual void StartOfDetectorCycle();
51 //
92664bc8 52 //
51504028 53 ClassDef(AliACORDEQADataMakerRec,1) // description
54
55};
56
57#endif // AliACORDEQADataMakerRec_H