]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDQADataMakerRec.h
Some fixes
[u/mrichter/AliRoot.git] / FMD / AliFMDQADataMakerRec.h
CommitLineData
c9dd1c4d 1#ifndef ALIFMDQADATAMAKERREC_H
2#define ALIFMDQADATAMAKERREC_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights
4 * reserved.
5 *
6 * See cxx source for full Copyright notice
7 */
8#include "AliQADataMakerRec.h"
56236ce9 9#include "TClonesArray.h"
c9dd1c4d 10class TH1F;
11class TH1I;
12class TList;
13
14
15//_____________________________________________________________________
16// This class implements the AliQADataMakerRec for the FMD. Some
17// functions are not implemented yet.
18// Author : Hans Hjersing Dalsgaard, hans.dalsgaard@cern.ch
19//_____________________________________________________________________
20
ffa78f64 21class AliFMDQADataMakerRec: public AliQADataMakerRec
22{
23public:
09b6c804 24 /**
25 * Constructor
26 */
c9dd1c4d 27 AliFMDQADataMakerRec();
09b6c804 28 /**
29 * Copy constructor
30 *
31 * @param qadm What to copy from
32 */
a7e41e8d 33 AliFMDQADataMakerRec(const AliFMDQADataMakerRec& qadm);
09b6c804 34 /**
35 * Assignment operator
36 *
37 * @param qadm What to assign from
38 *
39 * @return Reference to this
40 */
a7e41e8d 41 AliFMDQADataMakerRec& operator = (const AliFMDQADataMakerRec& qadm) ;
09b6c804 42 /**
43 * Destrcutor
44 */
9bd2ccc2 45 virtual ~AliFMDQADataMakerRec();
ffa78f64 46private:
09b6c804 47 /**
48 * Called at end of monitor cycle
49 *
50 * @param TASKINDEX_t Task
51 * @param list Output list
52 */
4e25ac79 53 virtual void EndOfDetectorCycle(AliQAv1::TASKINDEX_t, TObjArray ** list);
09b6c804 54 /**
55 * Intialize for ESD
56 */
c9dd1c4d 57 virtual void InitESDs();
09b6c804 58 /**
59 * Intialize for Digits
60 */
44ed7a66 61 virtual void InitDigits();
09b6c804 62 /**
63 * Intialize for RecPoints
64 */
c9dd1c4d 65 virtual void InitRecPoints();
09b6c804 66 /**
67 * Initialise for raw
68 */
c9dd1c4d 69 virtual void InitRaws();
09b6c804 70 /**
71 * Analyse ESD event
72 *
73 * @param esd ESD event
74 */
c9dd1c4d 75 virtual void MakeESDs(AliESDEvent * esd);
09b6c804 76 /**
77 * Analyse digits
78 */
6252ceeb 79 virtual void MakeDigits();
09b6c804 80 /**
81 * Analyse digits
82 *
83 * @param digitTree Tree of digits
84 */
44ed7a66 85 virtual void MakeDigits(TTree * digitTree);
09b6c804 86 /**
87 * Analyse rec points
88 *
89 * @param recpoTree Tree of RecPoints
90 */
c9dd1c4d 91 virtual void MakeRecPoints(TTree * recpoTree);
09b6c804 92 /**
93 * Analyse raw
94 *
95 * @param rawReader Raw reader
96 */
c9dd1c4d 97 virtual void MakeRaws(AliRawReader* rawReader);
09b6c804 98 /**
99 * Called at start of a cycle
100 *
101 */
c9dd1c4d 102 virtual void StartOfDetectorCycle();
09b6c804 103 /**
104 * Get the half-ring index
105 *
106 * @param det Detector
107 * @param ring Ring
108 * @param board Board number
109 * @param monitor Monitor
110 *
111 * @return Half ring index
112 */
113 Int_t GetHalfringIndex(UShort_t det, Char_t ring,
114 UShort_t board, UShort_t monitor = 0) const;
c9dd1c4d 115 ClassDef(AliFMDQADataMakerRec,0) // description
09b6c804 116 TClonesArray fRecPointsArray; // Rec points
ffa78f64 117};
c9dd1c4d 118
119#endif // AliFMDQADataMakerRec_H
120//____________________________________________________________________
121//
122// Local Variables:
123// mode: c++
124// End:
125//
126