Logo ROOT   6.08/07
Reference Guide
TGeoCache.h
Go to the documentation of this file.
1 // @(#)root/geom:$Id$
2 // Author: Andrei Gheata 18/03/02
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 // Author : Andrei Gheata - date Wed 12 Dec 2001 09:45:08 AM CET
12 
13 #ifndef ROOT_TGeoCache
14 #define ROOT_TGeoCache
15 
16 #ifndef ROOT_TGeoNode
17 #include "TGeoNode.h"
18 #endif
19 
20 #ifndef ROOT_TGeoStateInfo
21 #include "TGeoStateInfo.h"
22 #endif
23 
24 // forward declarations
25 class TGeoManager;
26 class TGeoHMatrix;
27 
28 class TGeoCacheState : public TObject
29 {
30 protected:
31  Int_t fCapacity; // maximum level stored
32  Int_t fLevel; // level in the current branch
33  Int_t fNmany; // number of overlapping nodes on current branch
34  Int_t fStart; // start level
35  Int_t fIdBranch[30]; // ID branch
36  Double_t fPoint[3]; // last point in master frame
37  Bool_t fOverlapping; // overlap flag
38 
39  TGeoNode **fNodeBranch; // last node branch stored
40  TGeoHMatrix **fMatrixBranch; // global matrices for last branch
41  TGeoHMatrix **fMatPtr; // array of matrix pointers
42 
45 
46 public:
48  TGeoCacheState(Int_t capacity);
49  virtual ~TGeoCacheState();
50 
51  void SetState(Int_t level, Int_t startlevel, Int_t nmany, Bool_t ovlp, Double_t *point=0);
52  Bool_t GetState(Int_t &level, Int_t &nmany, Double_t *point) const;
53 
54  ClassDef(TGeoCacheState, 0) // class storing the cache state
55 };
56 
57 class TGeoNodeCache : public TObject
58 {
59 private:
60  Int_t fGeoCacheMaxLevels;// maximum supported number of levels
61  Int_t fGeoCacheStackSize;// maximum size of the stack
62  Int_t fGeoInfoStackSize; // maximum size of the stack of info states
63  Int_t fLevel; // level in the current branch
64  Int_t fStackLevel; // current level in the stack
65  Int_t fInfoLevel; // current level in the stack
66  Int_t fCurrentID; // unique ID of current node
67  Int_t fIndex; // index in array of ID's
68  Int_t fIdBranch[100]; // current branch of indices
69  TString fPath; // path for current branch
70  TGeoNode *fTop; // top node
71  TGeoNode *fNode; //! current node
72  TGeoHMatrix *fMatrix; //! current matrix
73  TObjArray *fStack; // stack of cache states
74  TGeoHMatrix **fMatrixBranch; // current branch of global matrices
75  TGeoHMatrix **fMPB; // pre-built matrices
76  TGeoNode **fNodeBranch; // current branch of nodes
77  TGeoStateInfo **fInfoBranch; // current branch of nodes
78  TGeoStateInfo *fPWInfo; //! State info for the parallel world
79  Int_t *fNodeIdArray; //! array of node id's
80 
81  TGeoNodeCache(const TGeoNodeCache&); // Not implemented
82  TGeoNodeCache& operator=(const TGeoNodeCache&); // Not implemented
83 
84 public:
85  TGeoNodeCache();
86  TGeoNodeCache(TGeoNode *top, Bool_t nodeid=kFALSE, Int_t capacity=30);
87  virtual ~TGeoNodeCache();
88 
89  void BuildIdArray();
90  void BuildInfoBranch();
91  void CdNode(Int_t nodeid);
92  Bool_t CdDown(Int_t index);
93  Bool_t CdDown(TGeoNode *node);
94  void CdTop() {fLevel=1; CdUp();}
95  void CdUp();
96  void FillIdBranch(const Int_t *br, Int_t startlevel=0) {memcpy(fIdBranch+startlevel,br,(fLevel+1-startlevel)*sizeof(Int_t)); fIndex=fIdBranch[fLevel];}
97  const Int_t *GetIdBranch() const {return fIdBranch;}
98  void *GetBranch() const {return fNodeBranch;}
99  void GetBranchNames(Int_t *names) const;
100  void GetBranchNumbers(Int_t *copyNumbers, Int_t *volumeNumbers) const;
101  void GetBranchOnlys(Int_t *isonly) const;
102  void *GetMatrices() const {return fMatrixBranch;}
103  TGeoHMatrix *GetCurrentMatrix() const {return fMatrix;}
104  Int_t GetCurrentNodeId() const;
105  TGeoNode *GetMother(Int_t up=1) const {return ((fLevel-up)>=0)?fNodeBranch[fLevel-up]:0;}
106  TGeoHMatrix *GetMotherMatrix(Int_t up=1) const {return ((fLevel-up)>=0)?fMatrixBranch[fLevel-up]:0;}
107  TGeoNode *GetNode() const {return fNode;}
108  TGeoNode *GetTopNode() const {return fTop;}
109  TGeoStateInfo *GetInfo();
110  TGeoStateInfo *GetMakePWInfo(Int_t nd);
111  void ReleaseInfo();
112  Int_t GetLevel() const {return fLevel;}
113  const char *GetPath();
114  Int_t GetStackLevel() const {return fStackLevel;}
115  Int_t GetNodeId() const;
116  Bool_t HasIdArray() const {return (fNodeIdArray)?kTRUE:kFALSE;}
117  Bool_t IsDummy() const {return kTRUE;}
118 
119  void LocalToMaster(const Double_t *local, Double_t *master) const;
120  void MasterToLocal(const Double_t *master, Double_t *local) const;
121  void LocalToMasterVect(const Double_t *local, Double_t *master) const;
122  void MasterToLocalVect(const Double_t *master, Double_t *local) const;
123  void LocalToMasterBomb(const Double_t *local, Double_t *master) const;
124  void MasterToLocalBomb(const Double_t *master, Double_t *local) const;
125  Int_t PushState(Bool_t ovlp, Int_t ntmany=0, Int_t startlevel=0, Double_t *point=0);
126  Bool_t PopState(Int_t &nmany, Double_t *point=0);
127  Bool_t PopState(Int_t &nmany, Int_t level, Double_t *point=0);
128  void PopDummy(Int_t ipop=9999) {fStackLevel=(ipop>fStackLevel)?(fStackLevel-1):(ipop-1);}
129  void Refresh() {fNode=fNodeBranch[fLevel]; fMatrix=fMatrixBranch[fLevel];}
130  Bool_t RestoreState(Int_t &nmany, TGeoCacheState *state, Double_t *point=0);
131 
132  ClassDef(TGeoNodeCache, 0) // cache of reusable physical nodes
133 };
134 
135 #endif
Statefull info for the current geometry level.
Definition: TGeoStateInfo.h:23
Int_t fGeoCacheMaxLevels
Definition: TGeoCache.h:60
An array of TObjects.
Definition: TObjArray.h:39
void PopDummy(Int_t ipop=9999)
Definition: TGeoCache.h:128
Int_t fCurrentID
Definition: TGeoCache.h:66
TGeoCacheState()
Default ctor.
Definition: TGeoCache.cxx:456
The manager class for any TGeo geometry.
Definition: TGeoManager.h:38
void Refresh()
Definition: TGeoCache.h:129
TObjArray * fStack
current matrix
Definition: TGeoCache.h:73
void * GetMatrices() const
Definition: TGeoCache.h:102
Basic string class.
Definition: TString.h:137
Matrix class used for computing global transformations Should NOT be used for node definition...
Definition: TGeoMatrix.h:410
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
const Bool_t kFALSE
Definition: Rtypes.h:92
TGeoStateInfo ** fInfoBranch
Definition: TGeoCache.h:77
const Int_t * GetIdBranch() const
Definition: TGeoCache.h:97
void FillIdBranch(const Int_t *br, Int_t startlevel=0)
Definition: TGeoCache.h:96
#define ClassDef(name, id)
Definition: Rtypes.h:254
TString fPath
Definition: TGeoCache.h:69
Int_t fIdBranch[30]
Definition: TGeoCache.h:35
void CdTop()
Definition: TGeoCache.h:94
Int_t fStart
Definition: TGeoCache.h:34
Special pool of reusable nodes.
Definition: TGeoCache.h:57
Int_t fIndex
Definition: TGeoCache.h:67
Int_t * fNodeIdArray
State info for the parallel world.
Definition: TGeoCache.h:79
TGeoHMatrix ** fMatrixBranch
Definition: TGeoCache.h:40
TGeoHMatrix ** fMPB
Definition: TGeoCache.h:75
TGeoHMatrix ** fMatPtr
Definition: TGeoCache.h:41
Int_t fCapacity
Definition: TGeoCache.h:31
Int_t fLevel
Definition: TGeoCache.h:32
Int_t fGeoCacheStackSize
Definition: TGeoCache.h:61
TGeoNode * GetTopNode() const
Definition: TGeoCache.h:108
Int_t fInfoLevel
Definition: TGeoCache.h:65
virtual ~TGeoCacheState()
Dtor.
Definition: TGeoCache.cxx:545
Int_t fGeoInfoStackSize
Definition: TGeoCache.h:62
TGeoNode * GetNode() const
Definition: TGeoCache.h:107
Bool_t IsDummy() const
Definition: TGeoCache.h:117
TGeoNode * GetMother(Int_t up=1) const
Definition: TGeoCache.h:105
double Double_t
Definition: RtypesCore.h:55
Bool_t GetState(Int_t &level, Int_t &nmany, Double_t *point) const
Restore a modeler state.
Definition: TGeoCache.cxx:587
Double_t fPoint[3]
Definition: TGeoCache.h:36
Int_t fStackLevel
Definition: TGeoCache.h:64
TGeoNode ** fNodeBranch
Definition: TGeoCache.h:76
TGeoNode * fNode
Definition: TGeoCache.h:71
TGeoStateInfo * fPWInfo
Definition: TGeoCache.h:78
Mother of all ROOT objects.
Definition: TObject.h:37
A node represent a volume positioned inside another.They store links to both volumes and to the TGeoM...
Definition: TGeoNode.h:51
TGeoHMatrix ** fMatrixBranch
Definition: TGeoCache.h:74
Bool_t HasIdArray() const
Definition: TGeoCache.h:116
Class storing the state of the cache at a given moment.
Definition: TGeoCache.h:28
TGeoNode ** fNodeBranch
Definition: TGeoCache.h:39
Int_t GetStackLevel() const
Definition: TGeoCache.h:114
Bool_t fOverlapping
Definition: TGeoCache.h:37
void * GetBranch() const
Definition: TGeoCache.h:98
TGeoNode * fTop
Definition: TGeoCache.h:70
Int_t fLevel
Definition: TGeoCache.h:63
const Bool_t kTRUE
Definition: Rtypes.h:91
void SetState(Int_t level, Int_t startlevel, Int_t nmany, Bool_t ovlp, Double_t *point=0)
Fill current modeller state.
Definition: TGeoCache.cxx:560
Int_t fNmany
Definition: TGeoCache.h:33
TGeoCacheState & operator=(const TGeoCacheState &)
assignment operator
Definition: TGeoCache.cxx:518
TGeoHMatrix * GetCurrentMatrix() const
Definition: TGeoCache.h:103
TGeoHMatrix * fMatrix
current node
Definition: TGeoCache.h:72
Int_t GetLevel() const
Definition: TGeoCache.h:112
TGeoHMatrix * GetMotherMatrix(Int_t up=1) const
Definition: TGeoCache.h:106