]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSQADataMakerSim.h
Create the rec-point branch even in the case of no digits. Please review and fix...
[u/mrichter/AliRoot.git] / PHOS / AliPHOSQADataMakerSim.h
CommitLineData
04236e67 1#ifndef ALIPHOSQADataMakerSim_H
2#define ALIPHOSQADataMakerSim_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6
7/* $Id$ */
8
9/*
10 Produces the data needed to calculate the quality assurance.
11 All data must be mergeable objects.
12 Y. Schutz CERN July 2007
13*/
14
15
16// --- ROOT system ---
17class TH1F ;
18class TH1I ;
19class TObjArray ;
20
21// --- Standard library ---
22
23// --- AliRoot header files ---
24#include "AliQADataMakerSim.h"
25
26class AliPHOSQADataMakerSim: public AliQADataMakerSim {
27
28public:
29 AliPHOSQADataMakerSim() ; // ctor
30 AliPHOSQADataMakerSim(const AliPHOSQADataMakerSim& qadm) ;
31 AliPHOSQADataMakerSim& operator = (const AliPHOSQADataMakerSim& qadm) ;
32 virtual ~AliPHOSQADataMakerSim() {;} // dtor
33
34private:
92a357bf 35 virtual void EndOfDetectorCycle(AliQA::TASKINDEX_t, TObjArray * list) ;
04236e67 36 virtual void InitHits() ;
37 virtual void InitDigits() ;
38 virtual void InitSDigits() ;
8d8258f6 39 void MakeHits() ;
04236e67 40 virtual void MakeHits(TTree * hitTree) ;
41 virtual void MakeDigits(TClonesArray * digits) ;
42 virtual void MakeDigits(TTree * digitTree) ;
43 virtual void MakeSDigits(TClonesArray * sigits) ;
44 virtual void MakeSDigits(TTree * sigitTree) ;
45 virtual void StartOfDetectorCycle() ;
46
8d8258f6 47private:
48 TClonesArray * fHits; //!Array of PHOS hits
49
50 ClassDef(AliPHOSQADataMakerSim,2) // description
04236e67 51
52};
53
54#endif // AliPHOSQADataMakerSim_H