Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
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#include "TGeoNode.h"
17
18#ifdef R__LESS_INCLUDES
19struct TGeoStateInfo;
20#else
21#include "TGeoStateInfo.h"
22#endif
23
24// forward declarations
25class TGeoManager;
26class TGeoHMatrix;
27
28class TGeoCacheState : public TObject
29{
30protected:
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
46public:
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
57class TGeoNodeCache : public TObject
58{
59private:
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&) = delete;
83
84public:
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;}
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;}
111 void ReleaseInfo();
112 Int_t GetLevel() const {return fLevel;}
113 const char *GetPath();
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);}
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
int Int_t
Definition RtypesCore.h:45
const Bool_t kFALSE
Definition RtypesCore.h:92
bool Bool_t
Definition RtypesCore.h:63
double Double_t
Definition RtypesCore.h:59
const Bool_t kTRUE
Definition RtypesCore.h:91
#define ClassDef(name, id)
Definition Rtypes.h:325
Class storing the state of the cache at a given moment.
Definition TGeoCache.h:29
TGeoHMatrix ** fMatPtr
Definition TGeoCache.h:41
Bool_t GetState(Int_t &level, Int_t &nmany, Double_t *point) const
Restore a modeler state.
Int_t fIdBranch[30]
Definition TGeoCache.h:35
Bool_t fOverlapping
Definition TGeoCache.h:37
TGeoHMatrix ** fMatrixBranch
Definition TGeoCache.h:40
void SetState(Int_t level, Int_t startlevel, Int_t nmany, Bool_t ovlp, Double_t *point=0)
Fill current modeller state.
Int_t fCapacity
Definition TGeoCache.h:31
TGeoNode ** fNodeBranch
Definition TGeoCache.h:39
TGeoCacheState()
Default ctor.
Double_t fPoint[3]
Definition TGeoCache.h:36
virtual ~TGeoCacheState()
Dtor.
TGeoCacheState & operator=(const TGeoCacheState &)
assignment operator
Matrix class used for computing global transformations Should NOT be used for node definition.
Definition TGeoMatrix.h:421
The manager class for any TGeo geometry.
Definition TGeoManager.h:45
Special pool of reusable nodes.
Definition TGeoCache.h:58
virtual ~TGeoNodeCache()
Destructor.
TGeoNodeCache(const TGeoNodeCache &)=delete
array of node id's
void * GetMatrices() const
Definition TGeoCache.h:102
TGeoNode * GetTopNode() const
Definition TGeoCache.h:108
Bool_t IsDummy() const
Definition TGeoCache.h:117
Int_t fGeoCacheStackSize
Definition TGeoCache.h:61
TGeoHMatrix ** fMPB
Definition TGeoCache.h:75
TGeoNode * GetNode() const
Definition TGeoCache.h:107
void CdNode(Int_t nodeid)
Change current path to point to the node having this id.
void * GetBranch() const
Definition TGeoCache.h:98
TGeoNodeCache()
Dummy constructor.
Definition TGeoCache.cxx:34
void CdTop()
Definition TGeoCache.h:94
void GetBranchOnlys(Int_t *isonly) const
Fill copy numbers of current branch nodes.
TGeoNodeCache & operator=(const TGeoNodeCache &)=delete
const char * GetPath()
Returns the current geometry path.
void MasterToLocal(const Double_t *master, Double_t *local) const
Point in master frame defined by current matrix converted to local one.
TGeoStateInfo * fPWInfo
Definition TGeoCache.h:78
Int_t fIdBranch[100]
Definition TGeoCache.h:68
void BuildIdArray()
Builds node id array.
Int_t fInfoLevel
Definition TGeoCache.h:65
Int_t * fNodeIdArray
State info for the parallel world.
Definition TGeoCache.h:79
void BuildInfoBranch()
Builds info branch. Navigation is possible only after this step.
const Int_t * GetIdBranch() const
Definition TGeoCache.h:97
void PopDummy(Int_t ipop=9999)
Definition TGeoCache.h:128
TGeoHMatrix ** fMatrixBranch
Definition TGeoCache.h:74
void GetBranchNumbers(Int_t *copyNumbers, Int_t *volumeNumbers) const
Fill copy numbers of current branch nodes.
TGeoStateInfo ** fInfoBranch
Definition TGeoCache.h:77
TObjArray * fStack
current matrix
Definition TGeoCache.h:73
Int_t GetNodeId() const
Get unique node id.
TGeoStateInfo * GetInfo()
Get next state info pointer.
TGeoStateInfo * GetMakePWInfo(Int_t nd)
Get the PW info, if none create one.
TGeoHMatrix * GetMotherMatrix(Int_t up=1) const
Definition TGeoCache.h:106
Int_t fStackLevel
Definition TGeoCache.h:64
void MasterToLocalVect(const Double_t *master, Double_t *local) const
Vector in master frame defined by current matrix converted to local one.
void MasterToLocalBomb(const Double_t *master, Double_t *local) const
Point in master frame defined by current matrix converted to local one and rescaled with bomb factor.
Int_t fCurrentID
Definition TGeoCache.h:66
Bool_t PopState(Int_t &nmany, Double_t *point=0)
Pop next state/point from heap.
Bool_t HasIdArray() const
Definition TGeoCache.h:116
TGeoHMatrix * fMatrix
current node
Definition TGeoCache.h:72
Bool_t CdDown(Int_t index)
Make daughter INDEX of current node the active state. Compute global matrix.
void LocalToMaster(const Double_t *local, Double_t *master) const
Local point converted to master frame defined by current matrix.
void LocalToMasterVect(const Double_t *local, Double_t *master) const
Local vector converted to master frame defined by current matrix.
Int_t GetCurrentNodeId() const
Returns a fixed ID for current physical node.
Int_t PushState(Bool_t ovlp, Int_t ntmany=0, Int_t startlevel=0, Double_t *point=0)
Push current state into heap.
TGeoNode ** fNodeBranch
Definition TGeoCache.h:76
TGeoNode * fTop
Definition TGeoCache.h:70
TString fPath
Definition TGeoCache.h:69
TGeoNode * fNode
Definition TGeoCache.h:71
void LocalToMasterBomb(const Double_t *local, Double_t *master) const
Local point converted to master frame defined by current matrix and rescaled with bomb factor.
Int_t GetStackLevel() const
Definition TGeoCache.h:114
void CdUp()
Make mother of current node the active state.
void GetBranchNames(Int_t *names) const
Fill names with current branch volume names (4 char - used by GEANT3 interface).
TGeoHMatrix * GetCurrentMatrix() const
Definition TGeoCache.h:103
void FillIdBranch(const Int_t *br, Int_t startlevel=0)
Definition TGeoCache.h:96
void ReleaseInfo()
Release last used state info pointer.
void Refresh()
Definition TGeoCache.h:129
Int_t fGeoCacheMaxLevels
Definition TGeoCache.h:60
Bool_t RestoreState(Int_t &nmany, TGeoCacheState *state, Double_t *point=0)
Pop next state/point from a backed-up state.
TGeoNode * GetMother(Int_t up=1) const
Definition TGeoCache.h:105
Int_t GetLevel() const
Definition TGeoCache.h:112
Int_t fGeoInfoStackSize
Definition TGeoCache.h:62
A node represent a volume positioned inside another.They store links to both volumes and to the TGeoM...
Definition TGeoNode.h:41
An array of TObjects.
Definition TObjArray.h:37
Mother of all ROOT objects.
Definition TObject.h:37
Basic string class.
Definition TString.h:136
Statefull info for the current geometry level.