]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliStack.h
Changes needed by the new TRD tracker (Alex)
[u/mrichter/AliRoot.git] / STEER / AliStack.h
CommitLineData
9e1a0ddb 1#ifndef ALI_STACK_H
2#define ALI_STACK_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
af7ba10c 8// Particles stack class
9// Implements the TMCVirtualStack of the Virtual Monte Carlo
10// Author A.Morsch
88cb7938 11
e2afb3b6 12class TClonesArray;
9e1a0ddb 13class TFile;
e2afb3b6 14class TObjArray;
15class TParticle;
88cb7938 16class TString;
af7ba10c 17class TTree;
18#include <TArrayI.h>
19#include <TVirtualMCStack.h>
20
21class AliHeader;
af7ba10c 22
f4414561 23enum {kKeepBit=1, kDaughtersBit=2, kDoneBit=4, kTransportBit=BIT(14)};
9e1a0ddb 24
b9d0a01d 25class AliStack : public TVirtualMCStack
9e1a0ddb 26{
27 public:
28 // creators, destructors
942a9039 29 AliStack(Int_t size, const char* name = "");
9e1a0ddb 30 AliStack();
e2afb3b6 31 AliStack(const AliStack& st);
9e1a0ddb 32 virtual ~AliStack();
e2afb3b6 33 AliStack& operator=(const AliStack& st)
34 {st.Copy(*this); return(*this);}
9e1a0ddb 35
36 // methods
88cb7938 37
642f15cf 38 virtual void PushTrack(Int_t done, Int_t parent, Int_t pdg,
88cb7938 39 Float_t *pmom, Float_t *vpos, Float_t *polar,
40 Float_t tof, TMCProcess mech, Int_t &ntr,
41 Float_t weight, Int_t is);
42
642f15cf 43 virtual void PushTrack(Int_t done, Int_t parent, Int_t pdg,
88cb7938 44 Double_t px, Double_t py, Double_t pz, Double_t e,
45 Double_t vx, Double_t vy, Double_t vz, Double_t tof,
46 Double_t polx, Double_t poly, Double_t polz,
47 TMCProcess mech, Int_t &ntr, Double_t weight,
48 Int_t is);
49
642f15cf 50 virtual TParticle* PopNextTrack(Int_t& track);
51 virtual TParticle* GetCurrentTrack() const {return fCurrentTrack;}
52 virtual TParticle* PopPrimaryForTracking(Int_t i);
b9d0a01d 53
942a9039 54 void ConnectTree(TTree* tree);
88cb7938 55 Bool_t GetEvent();
77db8cbf 56 Bool_t PurifyKine();
57 Bool_t ReorderKine();
942a9039 58 void FinishEvent();
59 void FlagTrack(Int_t track);
60 void KeepTrack(Int_t itrack);
ae96e41f 61 void Clean(Int_t size = 0);
942a9039 62 void Reset(Int_t size = 0);
63 void DumpPart(Int_t i) const;
64 void DumpPStack ();
65 void DumpLoadedStack () const;
9e1a0ddb 66
67 // set methods
68 void SetNtrack(Int_t ntrack);
b9d0a01d 69 virtual void SetCurrentTrack(Int_t track);
9e1a0ddb 70 void SetHighWaterMark(Int_t hgwmk);
71 // get methods
b9d0a01d 72 virtual Int_t GetNtrack() const;
9e1a0ddb 73 Int_t GetNprimary() const;
642f15cf 74 virtual Int_t GetCurrentTrackNumber() const;
75 virtual Int_t GetCurrentParentTrackNumber() const;
9e1a0ddb 76 TObjArray* Particles() const;
77 TParticle* Particle(Int_t id);
f5f55563 78 Int_t GetPrimary(Int_t id);
88cb7938 79 TTree* TreeK();
e94530da 80 TParticle* ParticleFromTreeK(Int_t id) const;
81 Int_t TreeKEntry(Int_t id) const;
1fed0e8b 82 Bool_t IsPhysicalPrimary(Int_t i);
942a9039 83 Int_t TrackLabel(Int_t label) {return fTrackLabelMap[label];}
84 Int_t* TrackLabelMap() {return fTrackLabelMap.GetArray();}
85
9e1a0ddb 86 protected:
87 // methods
88 void CleanParents();
89 void ResetArrays(Int_t size);
90 TParticle* GetNextParticle();
e44c5340 91 Bool_t KeepPhysics(TParticle* part);
1fed0e8b 92 Bool_t IsStable(Int_t pdg) const;
9e1a0ddb 93 private:
6c4904c2 94 void Copy(TObject &st) const;
e2afb3b6 95
9e1a0ddb 96 // data members
97 TClonesArray *fParticles; //! Pointer to list of particles
98 TObjArray *fParticleMap; //! Map of particles in the supporting TClonesArray
99 TArrayI fParticleFileMap; // Map for particle ids
100 TParticle *fParticleBuffer; //! Pointer to current particle for writing
fe046ade 101 TParticle *fCurrentTrack; //! Pointer to particle currently transported
9e1a0ddb 102 TTree *fTreeK; //! Particle stack
103 Int_t fNtrack; // Number of tracks
104 Int_t fNprimary; // Number of primaries
105 Int_t fCurrent; //! Last track returned from the stack
106 Int_t fCurrentPrimary; //! Last primary track returned from the stack
107 Int_t fHgwmk; //! Last track purified
108 Int_t fLoadPoint; //! Next free position in the particle buffer
942a9039 109 TArrayI fTrackLabelMap; //! Map of track labels
110 ClassDef(AliStack,5) //Particles stack
9e1a0ddb 111};
112
113// inline
114
115inline void AliStack::SetNtrack(Int_t ntrack)
116{ fNtrack = ntrack; }
117
118inline void AliStack::SetCurrentTrack(Int_t track)
119{ fCurrent = track; }
120
121inline Int_t AliStack::GetNtrack() const
122{ return fNtrack; }
123
124inline Int_t AliStack::GetNprimary() const
125{ return fNprimary; }
126
642f15cf 127inline Int_t AliStack::GetCurrentTrackNumber() const
9e1a0ddb 128{ return fCurrent; }
129
130inline TObjArray* AliStack::Particles() const
131{ return fParticleMap; }
132
133#endif //ALI_STACK_H