]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG0/AliPWG0Helper.h
merging post-CVS changes into SVN:
[u/mrichter/AliRoot.git] / PWG0 / AliPWG0Helper.h
1 /* $Id$ */
2
3 #ifndef ALIPWG0HELPER_H
4 #define ALIPWG0HELPER_H
5
6 #include <TObject.h>
7
8 // static helper functions
9
10 class AliESD;
11 class AliESDVertex;
12 class TParticle;
13 class TH1;
14 class TH2;
15 class TH3;
16 class AliHeader;
17 class AliStack;
18 class TTree;
19
20 class AliPWG0Helper : public TObject
21 {
22   public:
23     enum Trigger { kMB1 = 0, kMB2 }; // definition from ALICE-INT-2005-025
24
25     static Bool_t IsEventTriggered(const AliESD* aEsd, Trigger trigger = kMB2);
26     static Bool_t IsEventTriggered(ULong64_t triggerMask, Trigger trigger = kMB2);
27     static Bool_t IsVertexReconstructed(const AliESD* aEsd);
28     static Bool_t IsVertexReconstructed(const AliESDVertex* vtxESD);
29     static Bool_t IsPrimaryCharged(TParticle* aParticle, Int_t aTotalPrimaries, Bool_t adebug = kFALSE);
30
31     static Int_t GetPythiaEventProcessType(AliHeader* aHeader, Bool_t adebug = kFALSE);
32     static TParticle* FindPrimaryMother(AliStack* stack, Int_t label);
33     static Int_t FindPrimaryMotherLabel(AliStack* stack, Int_t label);
34
35     static void CreateProjections(TH3* hist, Bool_t save = kFALSE);
36     static void CreateDividedProjections(TH3* hist, TH3* hist2, const char* axis = 0, Bool_t putErrors = kFALSE, Bool_t save = kFALSE);
37     static const char* GetAxisTitle(TH3* hist, const char axis);
38
39     static void SetBranchStatusRecursive(TTree* tree, char *bname, Bool_t status, Bool_t debug = kFALSE);
40
41     static void NormalizeToBinWidth(TH1* hist);
42     static void NormalizeToBinWidth(TH2* hist);
43
44   protected:
45     ClassDef(AliPWG0Helper, 0)
46
47   private:
48     AliPWG0Helper(const AliPWG0Helper&);
49     AliPWG0Helper& operator=(const AliPWG0Helper&);
50 };
51
52 #endif
53