]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG/FLOW/Base/AliFlowTrackSimple.h
Moving/split PWG2/FLOW to PWGCF/FLOW, PWG/FLOW/Base, PWG/FLOW/Tasks, PWG/Glauber
[u/mrichter/AliRoot.git] / PWG / FLOW / Base / AliFlowTrackSimple.h
CommitLineData
f1d945a1 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2* See cxx source for full Copyright notice */
3/* $Id$ */
4
e1911c19 5#ifndef ALIFLOWTRACKSIMPLE_H
6#define ALIFLOWTRACKSIMPLE_H
f1d945a1 7
bc231a12 8#include "TObject.h"
f1d945a1 9#include "TBits.h"
929098e4 10class TParticle;
f1d945a1 11
12// AliFlowTrackSimple:
13// A simple track class to the the AliFlowEventSimple for flow analysis
14// author: N. van der Kolk (kolk@nikhef.nl)
929098e4 15// mods: Mikolaj Krzewicki (mikolaj.krzewicki@cern.ch)
f1d945a1 16
bc231a12 17class AliFlowTrackSimple: public TObject {
f1d945a1 18
244c607a 19public:
8eca5d19 20 enum tagType { kInvalid=-1,
21 kRP=0,
22 kPOI=1,
23 kPOI1=2,
24 kPOI2=3,
25 };
26
f1d945a1 27 AliFlowTrackSimple();
701f71c1 28 AliFlowTrackSimple(TParticle* p);
bc6b015e 29 AliFlowTrackSimple(const AliFlowTrackSimple& aTrack);
59327657 30 AliFlowTrackSimple& operator=(const AliFlowTrackSimple& aTrack);
f1d945a1 31 virtual ~AliFlowTrackSimple();
bc231a12 32 virtual AliFlowTrackSimple* Clone(const char* option="") const;
f1d945a1 33
c076fda8 34 Bool_t IsFolder() const {return kTRUE;};
35 // void Browse(TBrowser *b);
bc231a12 36 virtual void Print(Option_t* option = "") const;
c076fda8 37
7d27a354 38 void Set(TParticle* p);
39
f1d945a1 40 Double_t Eta() const;
41 Double_t Pt() const;
44e060e0 42 Double_t Phi() const;
43 Double_t Weight() const;
701f71c1 44 Int_t Charge() const;
b4dba88d 45 Int_t PID() const {return 0;}
701f71c1 46
34b15925 47 Bool_t InRPSelection() const;
48 Bool_t InPOISelection() const;
49 Bool_t InSubevent(Int_t i) const;
50 Bool_t IsDead() const {return (fFlowBits.CountBits()==0);}
b125a454 51
f1d945a1 52 void SetEta(Double_t eta);
53 void SetPt(Double_t pt);
54 void SetPhi(Double_t phi);
44e060e0 55 void SetWeight(Double_t weight);
701f71c1 56 void SetCharge(Int_t charge);
7382279b 57 void SetForRPSelection(Bool_t b=kTRUE);
58 void SetForPOISelection(Bool_t b=kTRUE);
b4dba88d 59 void TagRP(Bool_t b=kTRUE) {SetForRPSelection(b);}
60 void TagPOI(Bool_t b=kTRUE) {SetForPOISelection(b);}
8eca5d19 61 void Tag(Int_t n, Bool_t b=kTRUE) {fFlowBits.SetBitNumber(n,b);}
62 void CheckTag(Int_t n) {fFlowBits.TestBitNumber(n);}
b125a454 63 void SetForSubevent(Int_t i);
34b15925 64 void ResetFlowTags() {fFlowBits.ResetAllBits();}
65 void ResetSubEventTags() {fSubEventBits.ResetAllBits();}
7d27a354 66 void Clear(Option_t* o="");
7382279b 67
68 void ResolutionPt(Double_t resolution);
69
bc231a12 70 void AddV1( Double_t v1,
71 Double_t reactionPlaneAngle,
72 Double_t precision,
73 Int_t maxNumberOfIterations=100 );
74 void AddV2( Double_t v2,
75 Double_t reactionPlaneAngle,
76 Double_t precision,
77 Int_t maxNumberOfIterations=100 );
bff213ad 78 void AddV3( Double_t v3,
79 Double_t reactionPlaneAngle,
80 Double_t precision,
81 Int_t maxNumberOfIterations=100 );
bc231a12 82 void AddV4( Double_t v4,
83 Double_t reactionPlaneAngle,
84 Double_t precision,
85 Int_t maxNumberOfIterations=100 );
1a80f9f6 86 void AddV5( Double_t v5,
87 Double_t reactionPlaneAngle,
88 Double_t precision,
89 Int_t maxNumberOfIterations=100 );
bc231a12 90 void AddFlow( Double_t v1,
91 Double_t v2,
bff213ad 92 Double_t v3,
bc231a12 93 Double_t v4,
94 Double_t reactionPlaneAngle,
95 Double_t precision,
96 Int_t maxNumberOfIterations=100 );
1a80f9f6 97 void AddFlow( Double_t v1,
98 Double_t v2,
99 Double_t v3,
100 Double_t v4,
101 Double_t v5,
102 Double_t reactionPlaneAngle,
103 Double_t precision,
104 Int_t maxNumberOfIterations=100 );
105 void AddFlow( Double_t v1,
106 Double_t v2,
107 Double_t v3,
108 Double_t v4,
109 Double_t v5,
110 Double_t rp1,
111 Double_t rp2,
112 Double_t rp3,
113 Double_t rp4,
114 Double_t rp5,
115 Double_t precision,
116 Int_t maxNumberOfIterations=100 );
117
34b15925 118 const TBits* GetFlowBits() const {return &fFlowBits;}
44e060e0 119
41dc4195 120 void SetID(Int_t i) {fID=i;}
cc0afcfc 121 Int_t GetID() const {return fID;}
6e214c87 122
f1d945a1 123 private:
701f71c1 124 AliFlowTrackSimple(Double_t phi, Double_t eta, Double_t pt, Double_t weight, Int_t charge);
44e060e0 125 Double_t fEta; // eta
126 Double_t fPt; // pt
127 Double_t fPhi; // phi
128 Double_t fTrackWeight; // weight
701f71c1 129 Int_t fCharge; //charge
44e060e0 130 TBits fFlowBits; // bits to set if track is selected
131 TBits fSubEventBits;// bits to set if track is selected for a subevent
41dc4195 132 Int_t fID; // Unique track ID, point back to the ESD track
f1d945a1 133
1c1d4332 134 ClassDef(AliFlowTrackSimple,1) // macro for rootcint
f1d945a1 135
136};
137
701f71c1 138//Getters
f1d945a1 139inline Double_t AliFlowTrackSimple::Eta() const {
88e00a8a 140 return this->fEta; }
f1d945a1 141inline Double_t AliFlowTrackSimple::Pt() const {
88e00a8a 142 return this->fPt;}
f1d945a1 143inline Double_t AliFlowTrackSimple::Phi() const {
88e00a8a 144 return this->fPhi; }
44e060e0 145inline Double_t AliFlowTrackSimple::Weight() const {
146 return this->fTrackWeight; }
701f71c1 147inline Int_t AliFlowTrackSimple::Charge() const {
148 return this->fCharge; }
b125a454 149//TBits
1918addd 150inline Bool_t AliFlowTrackSimple::InRPSelection() const {
8eca5d19 151 return this->fFlowBits.TestBitNumber(kRP); }
1918addd 152inline Bool_t AliFlowTrackSimple::InPOISelection() const {
8eca5d19 153 return this->fFlowBits.TestBitNumber(kPOI); }
b125a454 154inline Bool_t AliFlowTrackSimple::InSubevent(Int_t i) const {
155 return this->fSubEventBits.TestBitNumber(i); }
f1d945a1 156
701f71c1 157//Setters
f1d945a1 158inline void AliFlowTrackSimple::SetEta(Double_t val) {
159 fEta = val; }
160inline void AliFlowTrackSimple::SetPt(Double_t val) {
161 fPt = val; }
f1d945a1 162inline void AliFlowTrackSimple::SetPhi(Double_t val) {
163 fPhi = val; }
44e060e0 164inline void AliFlowTrackSimple::SetWeight(Double_t val) {
165 fTrackWeight = val; }
701f71c1 166inline void AliFlowTrackSimple::SetCharge(Int_t val) {
167 fCharge = val; }
b125a454 168//TBits
1918addd 169inline void AliFlowTrackSimple::SetForRPSelection(Bool_t val) {
8eca5d19 170 fFlowBits.SetBitNumber(kRP,val); }
1918addd 171inline void AliFlowTrackSimple::SetForPOISelection(Bool_t val) {
8eca5d19 172 fFlowBits.SetBitNumber(kPOI,val); }
b125a454 173inline void AliFlowTrackSimple::SetForSubevent(Int_t i) {
174 fSubEventBits.SetBitNumber(i,kTRUE); }
175
f1d945a1 176#endif
177