Logo ROOT   6.08/07
Reference Guide
TVirtualGeoTrack.h
Go to the documentation of this file.
1 // @(#)root/geom:$Id$
2 // Author: Andrei Gheata 2003/04/10
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TVirtualGeoTrack
13 #define ROOT_TVirtualGeoTrack
14 
15 #ifndef ROOT_TObjArray
16 #include "TObjArray.h"
17 #endif
18 
19 #ifndef ROOT_TGeoAtt
20 #include "TGeoAtt.h"
21 #endif
22 
23 #ifndef ROOT_TAttLine
24 #include "TAttLine.h"
25 #endif
26 
27 #ifndef ROOT_TAttMarker
28 #include "TAttMarker.h"
29 #endif
30 
31 class TVirtualGeoTrack : public TObject,
32  public TGeoAtt,
33  public TAttLine,
34  public TAttMarker
35 {
36 protected:
37  Int_t fPDG; // track pdg code
38  Int_t fId; // track id
39  TVirtualGeoTrack *fParent; // id of parent
40  TObject *fParticle; // particle for this track
41  TObjArray *fTracks; // daughter tracks
42 
45 
46 public:
48  TVirtualGeoTrack(Int_t id, Int_t pdgcode, TVirtualGeoTrack *parent=0, TObject *particle=0);
49  virtual ~TVirtualGeoTrack();
50 
51  virtual TVirtualGeoTrack *AddDaughter(Int_t id, Int_t pdgcode, TObject *particle=0) = 0;
52  virtual Int_t AddDaughter(TVirtualGeoTrack *other) = 0;
53  virtual void AddPoint(Double_t x, Double_t y, Double_t z, Double_t t) = 0;
54  virtual TVirtualGeoTrack *FindTrackWithId(Int_t id) const;
55  Int_t GetId() const {return fId;}
56  virtual Int_t GetDaughterId(Int_t index) const;
57  TVirtualGeoTrack *GetDaughter(Int_t index) const {return (TVirtualGeoTrack*)fTracks->At(index);}
58  TVirtualGeoTrack *GetMother() const {return fParent;}
59  TObject *GetMotherParticle() const {return (fParent)?fParent->GetParticle():0;}
60  virtual const char *GetName() const;
61  Int_t GetNdaughters() const {return (fTracks)?fTracks->GetEntriesFast():0;}
62  virtual Int_t GetNpoints() const = 0;
63  Int_t GetParentId() const {return (fParent)?fParent->GetId():-1;}
64  TObject *GetParticle() const {return fParticle;}
65  Int_t GetPDG() const {return fPDG;}
66  Int_t GetLastPoint(Double_t &x, Double_t &y, Double_t &z, Double_t &t) const {return GetPoint(GetNpoints()-1,x,y,z,t);}
67  const Double_t *GetFirstPoint() const {return GetPoint(0);}
68  const Double_t *GetLastPoint() const {return GetPoint(GetNpoints()-1);}
69  virtual Int_t GetPoint(Int_t i, Double_t &x, Double_t &y, Double_t &z, Double_t &t) const = 0;
70  virtual const Double_t *GetPoint(Int_t i) const = 0;
71  Bool_t HasPoints() const {return (GetNpoints()==0)?kFALSE:kTRUE;}
72  Bool_t IsInTimeRange() const;
73  virtual void Paint(Option_t *option="") = 0;
74  virtual void PaintCollect(Double_t /*time*/, Double_t * /*box*/) {;}
75  virtual void PaintCollectTrack(Double_t /*time*/, Double_t * /*box*/) {;}
76  virtual void PaintTrack(Option_t *option="") = 0;
77  virtual void ResetTrack() = 0;
78  void SetName(const char *name);
79  virtual void SetParticle(TObject *particle) {fParticle=particle;}
80  void SetParent(TVirtualGeoTrack *parent) {fParent = parent;}
81  void SetId(Int_t id) {fId = id;}
82  virtual void SetPDG(Int_t pdgcode) {fPDG = pdgcode;}
83 
84  ClassDef(TVirtualGeoTrack, 1) // virtual geometry tracks
85 };
86 
87 #endif
88 
89 
90 
91 
const Double_t * GetLastPoint() const
An array of TObjects.
Definition: TObjArray.h:39
virtual const char * GetName() const
Get the PDG name.
virtual Int_t GetDaughterId(Int_t index) const
Returns daughter id.
virtual void SetPDG(Int_t pdgcode)
Bool_t IsInTimeRange() const
True if track TOF range overlaps with time interval of TGeoManager.
const char Option_t
Definition: RtypesCore.h:62
Visualization and tracking attributes for volumes and nodes.
Definition: TGeoAtt.h:19
void SetId(Int_t id)
TObject * GetParticle() const
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
const Bool_t kFALSE
Definition: Rtypes.h:92
Int_t GetPDG() const
TObject * At(Int_t idx) const
Definition: TObjArray.h:167
Int_t GetId() const
Marker Attributes class.
Definition: TAttMarker.h:24
Double_t x[n]
Definition: legend1.C:17
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual Int_t GetPoint(Int_t i, Double_t &x, Double_t &y, Double_t &z, Double_t &t) const =0
virtual void ResetTrack()=0
virtual TVirtualGeoTrack * FindTrackWithId(Int_t id) const
Recursively search through this track for a daughter particle (at any depth) with the specified id...
Base class for user-defined tracks attached to a geometry.
XFontStruct * id
Definition: TGX11.cxx:108
Int_t GetParentId() const
Int_t GetLastPoint(Double_t &x, Double_t &y, Double_t &z, Double_t &t) const
TVirtualGeoTrack * GetMother() const
void SetName(const char *name)
Set a default name for this track.
Int_t GetEntriesFast() const
Definition: TObjArray.h:66
TObject * GetMotherParticle() const
Bool_t HasPoints() const
TVirtualGeoTrack * GetDaughter(Int_t index) const
virtual void PaintCollect(Double_t, Double_t *)
double Double_t
Definition: RtypesCore.h:55
Double_t y[n]
Definition: legend1.C:17
TVirtualGeoTrack & operator=(const TVirtualGeoTrack &)
Assignment operator. NOT TO BE CALLED.
virtual void AddPoint(Double_t x, Double_t y, Double_t z, Double_t t)=0
const Double_t * GetFirstPoint() const
virtual void Paint(Option_t *option="")=0
This method must be overridden if a class wants to paint itself.
Mother of all ROOT objects.
Definition: TObject.h:37
virtual void PaintTrack(Option_t *option="")=0
you should not use this method at all Int_t Int_t z
Definition: TRolke.cxx:630
TVirtualGeoTrack()
Virtual tracks default constructor.
TObjArray * fTracks
virtual Int_t GetNpoints() const =0
virtual TVirtualGeoTrack * AddDaughter(Int_t id, Int_t pdgcode, TObject *particle=0)=0
virtual void SetParticle(TObject *particle)
Int_t GetNdaughters() const
const Bool_t kTRUE
Definition: Rtypes.h:91
TVirtualGeoTrack * fParent
Line Attributes class.
Definition: TAttLine.h:24
void SetParent(TVirtualGeoTrack *parent)
char name[80]
Definition: TGX11.cxx:109
virtual ~TVirtualGeoTrack()
Destructor.
virtual void PaintCollectTrack(Double_t, Double_t *)