]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HMPID/AliHMPIDQADataMakerSim.h
Decoding raw event is under test
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDQADataMakerSim.h
1 #ifndef AliHMPIDQADataMakerSim_H
2 #define AliHMPIDQADataMakerSim_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 //  A. Mastroserio
13
14
15
16 // --- ROOT system ---
17
18
19 class TH1F ; 
20 class TH2F ;
21 class TH1I ; 
22
23 // --- Standard library ---
24 #include <TString.h>
25 // --- AliRoot header files ---
26
27 #include "AliQADataMakerSim.h"
28
29 class AliHMPIDQADataMakerSim: public AliQADataMakerSim {
30
31 public:
32   AliHMPIDQADataMakerSim() ;          // ctor
33   AliHMPIDQADataMakerSim(const AliHMPIDQADataMakerSim& qadm) ;   
34   AliHMPIDQADataMakerSim& operator = (const AliHMPIDQADataMakerSim& qadm) ;
35   virtual ~AliHMPIDQADataMakerSim() {;} // dtor
36
37 private:
38   virtual void   InitHits() ;      //book hit QA histo 
39   virtual void   InitDigits() ;    //book Digit QA histo
40   virtual void   InitSDigits() ;   //book SDigits QA histo
41   virtual void   MakeHits(TObject * hits) ;       //Fill hit QA histo
42   virtual void   MakeDigits(TObject * digits) ;   //Fill Digit QA histo
43   virtual void   MakeSDigits(TObject * sdigits) ; //Fill SDigit QA histo
44
45   TH1F *fhHitQdc;                  // Hit Q distr
46   TH2F *fhHitMap[7];               // Hit Q positions
47   TH1F  *fhSDigits ;               // SDigit Q distr
48   TH1F  *fhDigPcEvt;               // Pc occupancy per event
49   TH1F *fhDigChEvt;                // Chamber occupancy per event
50   TH1F *fhDigQ;                    // Digit Q distr
51
52 //  TH1F *fhCluEvt;                  // N clusters per chamber
53 //  TH1F *fhCluChi2;                 // Chi2
54 //  TH1F *fhCluQ;                    // cluster Q distr
55 //  TH1F *fhCluFlg;                  // resolved cluster flag
56 //  TH1F *fhCluSize;                 // raw cluster size
57 //  TH1F *fhMipCluSize;              // mip cluster size
58
59 //  TH2F *fhCkovP;                   // thetaC vs P
60 //  TH2F *fhSigP;                    // sigmaC vs P
61 //  TH2F *fhMipXY;                   // mip position on PC
62 //  TH2F *fhDifXY;                   // mip(X,Y) - extrapolated track(X,Y)
63 //  TH1F *fhPid[5];                  // Pid responses
64
65   ClassDef(AliHMPIDQADataMakerSim,1)  // description 
66
67 };
68
69 #endif // AliHMPIDQADataMakerSim_H