]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/qaRec/AliTRDclusterResolution.h
inserted the first calibration task for reconstruction algorithms
[u/mrichter/AliRoot.git] / TRD / qaRec / AliTRDclusterResolution.h
1 #ifndef ALITRDCLUSTERRESOLUTION_H
2 #define ALITRDCLUSTERRESOLUTION_H
3
4
5 #ifndef ALITRDRECOTASK_H
6 #include "AliTRDrecoTask.h"
7 #endif
8
9 class TObjArray;
10 class AliTRDclusterResolution : public AliTRDrecoTask
11 {
12 public:
13   enum {
14     kNTB = 24
15     ,kND = 5
16     ,kN  = 120
17   };
18   AliTRDclusterResolution();
19   virtual ~AliTRDclusterResolution();
20
21   void    ConnectInputData(Option_t *);
22   void    CreateOutputObjects();
23   void    GetRefFigure(Int_t ifig);
24   TObjArray*  Histos(); 
25
26   void    Exec(Option_t *);
27   Bool_t  PostProcess();
28   void    Terminate(Option_t *){};
29 private:
30   AliTRDclusterResolution(const AliTRDclusterResolution&);  
31   AliTRDclusterResolution& operator=(const AliTRDclusterResolution&);
32
33   TObjArray  *fInfo;
34
35   ClassDef(AliTRDclusterResolution, 0)  // cluster resolution
36 };
37
38 #endif
39