]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ANALYSIS/AliRunAnalysis.h
Coding convention, cosmetic changes
[u/mrichter/AliRoot.git] / ANALYSIS / AliRunAnalysis.h
1 #ifndef ALIRUNANALYSIS_H
2 #define ALIRUNANALYSIS_H
3 //________________________________
4 ///////////////////////////////////////////////////////////
5 //
6 // class AliRunAnalysis
7 //
8 // Analysis manager
9 //
10 //
11 // Piotr.Skowronski@cern.ch
12 //
13 ///////////////////////////////////////////////////////////
14
15 #include <TTask.h>
16 #include <TObjArray.h>
17 #include "AliAnalysis.h"
18
19 class AliEventCut;
20 class TFile;
21 class AliReader;
22
23 class AliRunAnalysis: public TTask
24 {
25   public: 
26     AliRunAnalysis();
27     virtual ~AliRunAnalysis();
28     
29     Int_t         Run();
30     void          Add(AliAnalysis* a);
31     void          SetReader(AliReader* reader){fReader = reader;}
32     
33     const char*   GetName(){return "RunAnalysis";}
34     void          EventCutOnRec(Bool_t flag){fCutOnRec = flag;}
35     void          EventCutOnSim(Bool_t flag){fCutOnSim = flag;}
36     void          SetEventCut(AliEventCut* evcut);
37     void          SetOwner(Bool_t owner=kTRUE){fAnalysies.SetOwner(owner);}
38     
39   protected:
40     TObjArray     fAnalysies;//arry with analysies
41     AliReader*    fReader;//arry with directories to read data from
42     
43     AliEventCut*  fEventCut;//event cut    
44     
45     Bool_t        fCutOnSim;//flag indicating that event cut is performed on simulated particles 
46     Bool_t        fCutOnRec;//flag indicating that event cut is performed on reconstructed tracks
47     
48     Bool_t        Rejected(AliAOD* recevent, AliAOD* simevent);
49     
50   private:
51     void SetName(const char *){}//change SetName to be private
52     
53     ClassDef(AliRunAnalysis,1)
54 };
55
56 #endif