]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/FLOW/AliFlowCommon/AliFlowEventSimple.h
New methods added (Maksym Zyzak) https://savannah.cern.ch/support/?125128
[u/mrichter/AliRoot.git] / PWG2 / FLOW / AliFlowCommon / AliFlowEventSimple.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3 /* $Id$ */
4
5 /*****************************************************************
6   AliFlowEventSimple: A simple event 
7   for flow analysis                  
8                                      
9   origin: Naomi van der Kolk (kolk@nikhef.nl)           
10           Ante Bilandzic     (anteb@nikhef.nl)         
11           Raimond Snellings  (Raimond.Snellings@nikhef.nl)    
12   mods:   Mikolaj Krzewicki  (mikolaj.krzewicki@cern.ch)
13 *****************************************************************/
14
15 #ifndef ALIFLOWEVENTSIMPLE_H
16 #define ALIFLOWEVENTSIMPLE_H
17
18 #include "TObject.h"
19 #include "TParameter.h"
20 #include "TMath.h"
21 class TTree;
22 class TF1;
23 class AliFlowVector;
24 class AliFlowTrackSimple;
25 class AliFlowTrackSimpleCuts;
26
27 class AliFlowEventSimple: public TObject {
28
29  public:
30
31   enum ConstructionMethod {kEmpty,kGenerate};
32
33   AliFlowEventSimple();
34   AliFlowEventSimple( Int_t nParticles,
35                       ConstructionMethod m=kEmpty,
36                       TF1* ptDist=NULL,
37                       Double_t phiMin=0.0,
38                       Double_t phiMax=TMath::TwoPi(),
39                       Double_t etaMin=-1.0,
40                       Double_t etaMax= 1.0 );
41   AliFlowEventSimple(TTree* anInput, const AliFlowTrackSimpleCuts* rpCuts, const AliFlowTrackSimpleCuts* poiCuts);
42   AliFlowEventSimple(const AliFlowEventSimple& anEvent);
43   AliFlowEventSimple& operator=(const AliFlowEventSimple& anEvent);
44   virtual  ~AliFlowEventSimple();
45
46   Bool_t  IsFolder() const {return kTRUE;};
47   void    Browse(TBrowser *b); 
48   void    Print(Option_t* option = "") const;      //method to print stats
49   
50   Int_t    NumberOfTracks() const                   { return fNumberOfTracks; }
51   Int_t    GetReferenceMultiplicity() const               { return fReferenceMultiplicity; }
52   void     SetReferenceMultiplicity( Int_t m )            { fReferenceMultiplicity = m; }
53   Int_t    GetEventNSelTracksRP() const             { return fNumberOfRPs; } 
54   void     SetEventNSelTracksRP(Int_t nr)           { fNumberOfRPs = nr; }  
55   Int_t    GetNumberOfRPs() const                   { return fNumberOfRPs; }
56   void     SetNumberOfRPs( Int_t nr )               { fNumberOfRPs=nr; }
57   Double_t GetMCReactionPlaneAngle() const          { return fMCReactionPlaneAngle; }
58   void     SetMCReactionPlaneAngle(Double_t fPhiRP) { fMCReactionPlaneAngle=fPhiRP; fMCReactionPlaneAngleIsSet=kTRUE; }
59   Bool_t   IsSetMCReactionPlaneAngle() const        { return fMCReactionPlaneAngleIsSet; }
60   void     SetAfterBurnerPrecision(Double_t p)      { fAfterBurnerPrecision=p; }
61   Double_t GetAfterBurnerPrecision() const          { return fAfterBurnerPrecision; }
62   void     SetUserModified(Bool_t s=kTRUE)          { fUserModified=s; }
63   Bool_t   IsUserModified() const                   { return fUserModified; }
64
65   void ResolutionPt(Double_t res);
66   void TagSubeventsInEta(Double_t etaMinA, Double_t etaMaxA, Double_t etaMinB, Double_t etaMaxB );
67   void TagSubeventsByCharge();
68   void TagRP(AliFlowTrackSimpleCuts* cuts );
69   void TagPOI(AliFlowTrackSimpleCuts* cuts );
70   void CloneTracks(Int_t n);
71   void AddV1( Double_t v1 );
72   void AddV2( Double_t v2 );
73   void AddV3( Double_t v3 );
74   void AddV4( Double_t v4 );
75   void AddV5( Double_t v5 );
76   void AddFlow( Double_t v1, Double_t v2, Double_t v3, Double_t v4, Double_t v5 );
77   void AddFlow(Double_t v1, Double_t v2, Double_t v3, Double_t v4, Double_t v5,
78                Double_t rp1, Double_t rp2, Double_t rp3, Double_t rp4, Double_t rp5 );
79   void AddV2( TF1* ptDepV2 );
80   void DefineDeadZone( Double_t etaMin, Double_t etaMax, Double_t phiMin, Double_t phiMax );
81   Int_t CleanUpDeadTracks();
82   void ClearFast();
83  
84   static TF1* SimplePtSpectrum();
85   static TF1* SimplePtDepV2();
86
87   AliFlowTrackSimple* GetTrack(Int_t i);
88   void AddTrack( AliFlowTrackSimple* track ); 
89  
90   AliFlowVector GetQ(Int_t n=2, TList *weightsList=NULL, Bool_t usePhiWeights=kFALSE, Bool_t usePtWeights=kFALSE, Bool_t useEtaWeights=kFALSE);
91   void Get2Qsub(AliFlowVector* Qarray, Int_t n=2, TList *weightsList=NULL, Bool_t usePhiWeights=kFALSE, Bool_t usePtWeights=kFALSE, Bool_t useEtaWeights=kFALSE);  
92
93  protected:
94   virtual void Generate( Int_t nParticles,
95                          TF1* ptDist=NULL,
96                          Double_t phiMin=0.0,
97                          Double_t phiMax=TMath::TwoPi(),
98                          Double_t etaMin=-1.0,
99                          Double_t etaMax= 1.0 );
100
101   //data members
102   TObjArray*              fTrackCollection;           //-> collection of tracks
103   Int_t                   fReferenceMultiplicity;     // reference multiplicity
104   Int_t                   fNumberOfTracks;            // number of tracks
105   Int_t                   fNumberOfRPs;               // number of tracks that have passed the RP selection
106   Double_t                fMCReactionPlaneAngle;      // the angle of the reaction plane from the MC truth
107   Bool_t                  fMCReactionPlaneAngleIsSet; // did we set it from MC?
108   Double_t                fAfterBurnerPrecision;      // iteration precision in afterburner
109   Bool_t                  fUserModified;              // did we modify the event in any way (afterburner etc) ?
110   TParameter<Int_t>*      fNumberOfTracksWrap;        //! number of tracks in TBrowser
111   TParameter<Int_t>*      fNumberOfRPsWrap;           //! number of tracks that have passed the RP selection in TBrowser
112   TParameter<Double_t>*   fMCReactionPlaneAngleWrap;  //! the angle of the reaction plane from the MC truth in TBrowser
113
114   ClassDef(AliFlowEventSimple,1)
115 };
116
117 #endif
118
119