]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGPP/TRD/AliTRDefficiency.h
Moving PWG1 to PWGPP
[u/mrichter/AliRoot.git] / PWGPP / TRD / AliTRDefficiency.h
1 #ifndef ALITRDEFFICIENCY_H
2 #define ALITRDEFFICIENCY_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id: AliTRDefficiency.h 27496 2008-07-22 08:35:45Z cblume $ */
7
8 ////////////////////////////////////////////////////////////////////////////
9 //                                                                        //
10 //  Reconstruction QA                                                     //
11 //                                                                        //
12 ////////////////////////////////////////////////////////////////////////////
13
14 #ifndef ALITRDRECOTASK_H
15 #include "AliTRDrecoTask.h"
16 #endif
17
18 class TObjArray;
19 class TList;
20 class TClonesArray;
21 class TTreeSRedirector;
22 class AliTRDefficiency : public AliTRDrecoTask
23 {
24 public:
25   AliTRDefficiency();
26   AliTRDefficiency(char* name);
27   virtual ~AliTRDefficiency();
28   void    UserCreateOutputObjects();
29   void    UserExec(Option_t *);
30   Bool_t  GetRefFigure(Int_t ifig);
31   Bool_t  PostProcess();
32
33 private:
34   AliTRDefficiency(const AliTRDefficiency&);
35   AliTRDefficiency& operator=(const AliTRDefficiency&);
36
37 private:
38   TClonesArray     *fMissed;            // Missed ?
39
40   ClassDef(AliTRDefficiency, 1) // TRD tracking efficiency
41 };
42
43 #endif
44