]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG/FLOW/Base/AliFlowTrackSimple.h
from Ante Bilandzic:
[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;
60875c3c 45 Double_t Mass() const;
b4dba88d 46 Int_t PID() const {return 0;}
701f71c1 47
34b15925 48 Bool_t InRPSelection() const;
49 Bool_t InPOISelection() const;
50 Bool_t InSubevent(Int_t i) const;
51 Bool_t IsDead() const {return (fFlowBits.CountBits()==0);}
b125a454 52
f1d945a1 53 void SetEta(Double_t eta);
54 void SetPt(Double_t pt);
55 void SetPhi(Double_t phi);
44e060e0 56 void SetWeight(Double_t weight);
701f71c1 57 void SetCharge(Int_t charge);
60875c3c 58 void SetMass(Double_t mass);
7382279b 59 void SetForRPSelection(Bool_t b=kTRUE);
60 void SetForPOISelection(Bool_t b=kTRUE);
b4dba88d 61 void TagRP(Bool_t b=kTRUE) {SetForRPSelection(b);}
62 void TagPOI(Bool_t b=kTRUE) {SetForPOISelection(b);}
8eca5d19 63 void Tag(Int_t n, Bool_t b=kTRUE) {fFlowBits.SetBitNumber(n,b);}
64 void CheckTag(Int_t n) {fFlowBits.TestBitNumber(n);}
b125a454 65 void SetForSubevent(Int_t i);
34b15925 66 void ResetFlowTags() {fFlowBits.ResetAllBits();}
67 void ResetSubEventTags() {fSubEventBits.ResetAllBits();}
7d27a354 68 void Clear(Option_t* o="");
7382279b 69
70 void ResolutionPt(Double_t resolution);
71
bc231a12 72 void AddV1( Double_t v1,
73 Double_t reactionPlaneAngle,
74 Double_t precision,
75 Int_t maxNumberOfIterations=100 );
76 void AddV2( Double_t v2,
77 Double_t reactionPlaneAngle,
78 Double_t precision,
79 Int_t maxNumberOfIterations=100 );
bff213ad 80 void AddV3( Double_t v3,
81 Double_t reactionPlaneAngle,
82 Double_t precision,
83 Int_t maxNumberOfIterations=100 );
bc231a12 84 void AddV4( Double_t v4,
85 Double_t reactionPlaneAngle,
86 Double_t precision,
87 Int_t maxNumberOfIterations=100 );
1a80f9f6 88 void AddV5( Double_t v5,
89 Double_t reactionPlaneAngle,
90 Double_t precision,
91 Int_t maxNumberOfIterations=100 );
bc231a12 92 void AddFlow( Double_t v1,
93 Double_t v2,
bff213ad 94 Double_t v3,
bc231a12 95 Double_t v4,
96 Double_t reactionPlaneAngle,
97 Double_t precision,
98 Int_t maxNumberOfIterations=100 );
1a80f9f6 99 void AddFlow( Double_t v1,
100 Double_t v2,
101 Double_t v3,
102 Double_t v4,
103 Double_t v5,
104 Double_t reactionPlaneAngle,
105 Double_t precision,
106 Int_t maxNumberOfIterations=100 );
107 void AddFlow( Double_t v1,
108 Double_t v2,
109 Double_t v3,
110 Double_t v4,
111 Double_t v5,
112 Double_t rp1,
113 Double_t rp2,
114 Double_t rp3,
115 Double_t rp4,
116 Double_t rp5,
117 Double_t precision,
118 Int_t maxNumberOfIterations=100 );
119
34b15925 120 const TBits* GetFlowBits() const {return &fFlowBits;}
44e060e0 121
41dc4195 122 void SetID(Int_t i) {fID=i;}
cc0afcfc 123 Int_t GetID() const {return fID;}
6e214c87 124
f1d945a1 125 private:
60875c3c 126 AliFlowTrackSimple(Double_t phi, Double_t eta, Double_t pt, Double_t weight, Int_t charge, Double_t mass=-1);
44e060e0 127 Double_t fEta; // eta
128 Double_t fPt; // pt
129 Double_t fPhi; // phi
130 Double_t fTrackWeight; // weight
701f71c1 131 Int_t fCharge; //charge
60875c3c 132 Double_t fMass; // mass
44e060e0 133 TBits fFlowBits; // bits to set if track is selected
134 TBits fSubEventBits;// bits to set if track is selected for a subevent
41dc4195 135 Int_t fID; // Unique track ID, point back to the ESD track
f1d945a1 136
60875c3c 137 ClassDef(AliFlowTrackSimple,2) // macro for rootcint
f1d945a1 138
139};
140
701f71c1 141//Getters
f1d945a1 142inline Double_t AliFlowTrackSimple::Eta() const {
88e00a8a 143 return this->fEta; }
f1d945a1 144inline Double_t AliFlowTrackSimple::Pt() const {
88e00a8a 145 return this->fPt;}
f1d945a1 146inline Double_t AliFlowTrackSimple::Phi() const {
88e00a8a 147 return this->fPhi; }
44e060e0 148inline Double_t AliFlowTrackSimple::Weight() const {
149 return this->fTrackWeight; }
701f71c1 150inline Int_t AliFlowTrackSimple::Charge() const {
151 return this->fCharge; }
60875c3c 152inline Double_t AliFlowTrackSimple::Mass() const {
153 return this->fMass; }
b125a454 154//TBits
1918addd 155inline Bool_t AliFlowTrackSimple::InRPSelection() const {
8eca5d19 156 return this->fFlowBits.TestBitNumber(kRP); }
1918addd 157inline Bool_t AliFlowTrackSimple::InPOISelection() const {
8eca5d19 158 return this->fFlowBits.TestBitNumber(kPOI); }
b125a454 159inline Bool_t AliFlowTrackSimple::InSubevent(Int_t i) const {
160 return this->fSubEventBits.TestBitNumber(i); }
f1d945a1 161
701f71c1 162//Setters
f1d945a1 163inline void AliFlowTrackSimple::SetEta(Double_t val) {
164 fEta = val; }
165inline void AliFlowTrackSimple::SetPt(Double_t val) {
166 fPt = val; }
f1d945a1 167inline void AliFlowTrackSimple::SetPhi(Double_t val) {
168 fPhi = val; }
44e060e0 169inline void AliFlowTrackSimple::SetWeight(Double_t val) {
170 fTrackWeight = val; }
701f71c1 171inline void AliFlowTrackSimple::SetCharge(Int_t val) {
172 fCharge = val; }
60875c3c 173inline void AliFlowTrackSimple::SetMass(Double_t val) {
174 fMass = val; }
b125a454 175//TBits
1918addd 176inline void AliFlowTrackSimple::SetForRPSelection(Bool_t val) {
8eca5d19 177 fFlowBits.SetBitNumber(kRP,val); }
1918addd 178inline void AliFlowTrackSimple::SetForPOISelection(Bool_t val) {
8eca5d19 179 fFlowBits.SetBitNumber(kPOI,val); }
b125a454 180inline void AliFlowTrackSimple::SetForSubevent(Int_t i) {
181 fSubEventBits.SetBitNumber(i,kTRUE); }
182
f1d945a1 183#endif
184