ROOT
6.07/01
Reference Guide
|
TGeometry description.
The Geometry class describes the geometry of a detector. The current implementation supports the GEANT3 style description. A special program provided in the ROOT utilities (toroot) can be used to automatically translate a GEANT detector geometry into a ROOT geometry.
a Geometry object is entered into the list of geometries into the ROOT main object (see TROOT description) when the TGeometry constructor is invoked. Several geometries may coexist in memory. / A Geometry object consist of the following linked lists:
Only the Build and Draw functions for a geometry are currently supported.
The conversion program from Geant to Root has been added in the list of utilities in utils directory.(see g2root) The executable module of g2root can be found in $ROOTSYS/bin/g2root.
To use this conversion program, type the shell command:
for example
will convert the GEANT RZ file na49.geom into a ROOT macro na49.C
To generate the Geometry structure within Root, do:
Note: all keys are also written on closing of the file, gna49.Close or when the program exits, Root closes all open files correctly. Once this file has been written, in a subsequent session, simply do:
The figure below shows the geometry above using the x3d viewer. This x3d viewer is invoked by selecting "View x3d" in the View menu of a canvas (See example of this tool bar in TCanvas).
Definition at line 43 of file TGeometry.h.
Public Member Functions | |
TGeometry () | |
TGeometry (const char *name, const char *title) | |
Geometry normal constructor. More... | |
virtual | ~TGeometry () |
Geometry default destructor. More... | |
virtual void | Browse (TBrowser *b) |
Browse. More... | |
virtual void | cd (const char *path=0) |
Change Current Geometry to this. More... | |
virtual void | Draw (Option_t *option="") |
Draw this Geometry. More... | |
virtual TObject * | FindObject (const char *name) const |
Search object identified by name in the geometry tree. More... | |
virtual TObject * | FindObject (const TObject *obj) const |
Find object in a geometry node, material, etc. More... | |
Float_t | GetBomb () const |
Int_t | GeomLevel () const |
THashList * | GetListOfShapes () const |
TList * | GetListOfNodes () const |
THashList * | GetListOfMaterials () const |
THashList * | GetListOfMatrices () const |
TNode * | GetCurrentNode () const |
TMaterial * | GetMaterial (const char *name) const |
Return pointer to Material with name. More... | |
TMaterial * | GetMaterialByNumber (Int_t number) const |
Return pointer to Material with number. More... | |
TNode * | GetNode (const char *name) const |
Return pointer to node with name in the geometry tree. More... | |
TShape * | GetShape (const char *name) const |
Return pointer to Shape with name. More... | |
TShape * | GetShapeByNumber (Int_t number) const |
Return pointer to Shape with number. More... | |
TRotMatrix * | GetRotMatrix (const char *name) const |
Return pointer to RotMatrix with name. More... | |
TRotMatrix * | GetRotMatrixByNumber (Int_t number) const |
Return pointer to RotMatrix with number. More... | |
TRotMatrix * | GetCurrentMatrix () const |
TRotMatrix * | GetCurrentPosition (Double_t *x, Double_t *y, Double_t *z) const |
TRotMatrix * | GetCurrentPosition (Float_t *x, Float_t *y, Float_t *z) const |
Bool_t | GetCurrentReflection () const |
Bool_t | IsFolder () const |
Returns kTRUE in case object contains browsable objects (like containers or lists of other objects). More... | |
virtual void | Local2Master (Double_t *local, Double_t *master) |
Convert one point from local system to master reference system. More... | |
virtual void | Local2Master (Float_t *local, Float_t *master) |
Convert one point from local system to master reference system. More... | |
virtual void | ls (Option_t *option="rsn2") const |
List this geometry. More... | |
virtual void | Master2Local (Double_t *master, Double_t *local) |
Convert one point from master system to local reference system. More... | |
virtual void | Master2Local (Float_t *master, Float_t *local) |
Convert one point from master system to local reference system. More... | |
virtual void | Node (const char *name, const char *title, const char *shapename, Double_t x=0, Double_t y=0, Double_t z=0, const char *matrixname="", Option_t *option="") |
Add a node to the current node in this geometry. More... | |
virtual Int_t | PushLevel () |
virtual Int_t | PopLevel () |
virtual void | RecursiveRemove (TObject *obj) |
Recursively remove object from a Geometry list. More... | |
virtual void | SetBomb (Float_t bomb=1.4) |
virtual void | SetCurrentNode (TNode *node) |
virtual void | SetGeomLevel (Int_t level=0) |
virtual void | SetMatrix (TRotMatrix *matrix=0) |
virtual void | SetPosition (TRotMatrix *matrix, Double_t x=0, Double_t y=0, Double_t z=0) |
virtual void | SetPosition (TRotMatrix *matrix, Float_t x, Float_t y, Float_t z) |
virtual void | SetPosition (Double_t x, Double_t y, Double_t z) |
virtual void | SetPosition (Float_t x, Float_t y, Float_t z) |
virtual void | UpdateMatrix (TNode *node) |
Update global rotation matrix/translation vector for this node this function must be called before invoking Local2Master. More... | |
virtual void | UpdateTempMatrix (Double_t x=0, Double_t y=0, Double_t z=0, TRotMatrix *matrix=0) |
Update temp matrix. More... | |
virtual void | UpdateTempMatrix (Double_t x, Double_t y, Double_t z, Double_t *matrix, Bool_t isReflection=kFALSE) |
Update temp matrix. More... | |
Public Member Functions inherited from TNamed | |
TNamed () | |
TNamed (const char *name, const char *title) | |
TNamed (const TString &name, const TString &title) | |
TNamed (const TNamed &named) | |
TNamed & | operator= (const TNamed &rhs) |
TNamed assignment operator. More... | |
virtual | ~TNamed () |
virtual void | Clear (Option_t *option="") |
Set name and title to empty strings (""). More... | |
virtual TObject * | Clone (const char *newname="") const |
Make a clone of an object using the Streamer facility. More... | |
virtual Int_t | Compare (const TObject *obj) const |
Compare two TNamed objects. More... | |
virtual void | Copy (TObject &named) const |
Copy this to obj. More... | |
virtual void | FillBuffer (char *&buffer) |
Encode TNamed into output buffer. More... | |
virtual const char * | GetName () const |
Returns name of object. More... | |
virtual const char * | GetTitle () const |
Returns title of object. More... | |
virtual ULong_t | Hash () const |
Return hash value for this object. More... | |
virtual Bool_t | IsSortable () const |
virtual void | SetName (const char *name) |
Change (i.e. More... | |
virtual void | SetNameTitle (const char *name, const char *title) |
Change (i.e. set) all the TNamed parameters (name and title). More... | |
virtual void | SetTitle (const char *title="") |
Change (i.e. set) the title of the TNamed. More... | |
virtual void | Print (Option_t *option="") const |
Print TNamed name and title. More... | |
virtual Int_t | Sizeof () const |
Return size of the TNamed part of the TObject. More... | |
Public Member Functions inherited from TObject | |
TObject () | |
TObject (const TObject &object) | |
TObject copy ctor. More... | |
TObject & | operator= (const TObject &rhs) |
TObject assignment operator. More... | |
virtual | ~TObject () |
TObject destructor. More... | |
virtual void | AppendPad (Option_t *option="") |
Append graphics object to current pad. More... | |
virtual const char * | ClassName () const |
Returns name of class to which the object belongs. More... | |
virtual void | Delete (Option_t *option="") |
Delete this object. More... | |
virtual Int_t | DistancetoPrimitive (Int_t px, Int_t py) |
Computes distance from point (px,py) to the object. More... | |
virtual void | DrawClass () const |
Draw class inheritance tree of the class to which this object belongs. More... | |
virtual TObject * | DrawClone (Option_t *option="") const |
Draw a clone of this object in the current pad. More... | |
virtual void | Dump () const |
Dump contents of object on stdout. More... | |
virtual void | Execute (const char *method, const char *params, Int_t *error=0) |
Execute method on this object with the given parameter string, e.g. More... | |
virtual void | Execute (TMethod *method, TObjArray *params, Int_t *error=0) |
Execute method on this object with parameters stored in the TObjArray. More... | |
virtual void | ExecuteEvent (Int_t event, Int_t px, Int_t py) |
Execute action corresponding to an event at (px,py). More... | |
virtual Option_t * | GetDrawOption () const |
Get option used by the graphics system to draw this object. More... | |
virtual UInt_t | GetUniqueID () const |
Return the unique object id. More... | |
virtual const char * | GetIconName () const |
Returns mime type name of object. More... | |
virtual Option_t * | GetOption () const |
virtual char * | GetObjectInfo (Int_t px, Int_t py) const |
Returns string containing info about the object at position (px,py). More... | |
virtual Bool_t | HandleTimer (TTimer *timer) |
Execute action in response of a timer timing out. More... | |
virtual Bool_t | InheritsFrom (const char *classname) const |
Returns kTRUE if object inherits from class "classname". More... | |
virtual Bool_t | InheritsFrom (const TClass *cl) const |
Returns kTRUE if object inherits from TClass cl. More... | |
virtual void | Inspect () const |
Dump contents of this object in a graphics canvas. More... | |
virtual Bool_t | IsEqual (const TObject *obj) const |
Default equal comparison (objects are equal if they have the same address in memory). More... | |
Bool_t | IsOnHeap () const |
Bool_t | IsZombie () const |
virtual Bool_t | Notify () |
This method must be overridden to handle object notification. More... | |
virtual void | Paint (Option_t *option="") |
This method must be overridden if a class wants to paint itself. More... | |
virtual void | Pop () |
Pop on object drawn in a pad to the top of the display list. More... | |
virtual Int_t | Read (const char *name) |
Read contents of object with specified name from the current directory. More... | |
virtual void | SaveAs (const char *filename="", Option_t *option="") const |
Save this object in the file specified by filename. More... | |
virtual void | SavePrimitive (std::ostream &out, Option_t *option="") |
Save a primitive as a C++ statement(s) on output stream "out". More... | |
virtual void | SetDrawOption (Option_t *option="") |
Set drawing option for object. More... | |
virtual void | SetUniqueID (UInt_t uid) |
Set the unique object id. More... | |
virtual void | UseCurrentStyle () |
Set current style settings in this object This function is called when either TCanvas::UseCurrentStyle or TROOT::ForceStyle have been invoked. More... | |
virtual Int_t | Write (const char *name=0, Int_t option=0, Int_t bufsize=0) |
Write this object to the current directory. More... | |
virtual Int_t | Write (const char *name=0, Int_t option=0, Int_t bufsize=0) const |
Write this object to the current directory. More... | |
void * | operator new (size_t sz) |
void * | operator new[] (size_t sz) |
void * | operator new (size_t sz, void *vp) |
void * | operator new[] (size_t sz, void *vp) |
void | operator delete (void *ptr) |
Operator delete. More... | |
void | operator delete[] (void *ptr) |
Operator delete []. More... | |
void | SetBit (UInt_t f, Bool_t set) |
Set or unset the user status bits as specified in f. More... | |
void | SetBit (UInt_t f) |
void | ResetBit (UInt_t f) |
Bool_t | TestBit (UInt_t f) const |
Int_t | TestBits (UInt_t f) const |
void | InvertBit (UInt_t f) |
virtual void | Info (const char *method, const char *msgfmt,...) const |
Issue info message. More... | |
virtual void | Warning (const char *method, const char *msgfmt,...) const |
Issue warning message. More... | |
virtual void | Error (const char *method, const char *msgfmt,...) const |
Issue error message. More... | |
virtual void | SysError (const char *method, const char *msgfmt,...) const |
Issue system error message. More... | |
virtual void | Fatal (const char *method, const char *msgfmt,...) const |
Issue fatal error message. More... | |
void | AbstractMethod (const char *method) const |
Use this method to implement an "abstract" method that you don't want to leave purely abstract. More... | |
void | MayNotUse (const char *method) const |
Use this method to signal that a method (defined in a base class) may not be called in a derived class (in principle against good design since a child class should not provide less functionality than its parent, however, sometimes it is necessary). More... | |
void | Obsolete (const char *method, const char *asOfVers, const char *removedFromVers) const |
Use this method to declare a method obsolete. More... | |
Static Public Member Functions | |
static TObjArray * | Get (const char *name) |
Static function called by TROOT to search name in the geometry. More... | |
static void | UpdateTempMatrix (Double_t *dx1, Double_t *rmat1, Double_t x, Double_t y, Double_t z, Double_t *matrix, Double_t *dxnew, Double_t *rmatnew) |
Compute new translation vector and global matrix. More... | |
Static Public Member Functions inherited from TObject | |
static Long_t | GetDtorOnly () |
Return destructor only flag. More... | |
static void | SetDtorOnly (void *obj) |
Set destructor only flag. More... | |
static Bool_t | GetObjectStat () |
Get status of object stat flag. More... | |
static void | SetObjectStat (Bool_t stat) |
Turn on/off tracking of objects in the TObjectTable. More... | |
Protected Member Functions | |
TGeometry (const TGeometry &) | |
copy constructor More... | |
TGeometry & | operator= (const TGeometry &) |
assignment operator More... | |
Protected Member Functions inherited from TObject | |
void | MakeZombie () |
virtual void | DoError (int level, const char *location, const char *fmt, va_list va) const |
Interface to ErrorHandler (protected). More... | |
Private Attributes | |
THashList * | fMaterials |
THashList * | fMatrices |
THashList * | fShapes |
TList * | fNodes |
TRotMatrix * | fMatrix |
TNode * | fCurrentNode |
Pointers to current rotation matrices. More... | |
TMaterial ** | fMaterialPointer |
Pointer to current node. More... | |
TRotMatrix ** | fMatrixPointer |
Pointers to materials. More... | |
TShape ** | fShapePointer |
Pointers to rotation matrices. More... | |
Float_t | fBomb |
Pointers to shapes. More... | |
Int_t | fGeomLevel |
Double_t | fX |
Double_t | fY |
Double_t | fZ |
The global translation of the current node. More... | |
Double_t | fTranslation [kMAXLEVELS][kVectorSize] |
Double_t | fRotMatrix [kMAXLEVELS][kMatrixSize] |
Bool_t | fIsReflection [kMAXLEVELS] |
Additional Inherited Members | |
Public Types inherited from TObject | |
enum | EStatusBits { kCanDelete = BIT(0), kMustCleanup = BIT(3), kObjInCanvas = BIT(3), kIsReferenced = BIT(4), kHasUUID = BIT(5), kCannotPick = BIT(6), kNoContextMenu = BIT(8), kInvalidObject = BIT(13) } |
enum | { kIsOnHeap = 0x01000000, kNotDeleted = 0x02000000, kZombie = 0x04000000, kBitMask = 0x00ffffff } |
enum | { kSingleKey = BIT(0), kOverwrite = BIT(1), kWriteDelete = BIT(2) } |
Protected Attributes inherited from TNamed | |
TString | fName |
TString | fTitle |
#include <TGeometry.h>
|
protected |
copy constructor
Definition at line 139 of file TGeometry.cxx.
TGeometry::TGeometry | ( | ) |
TGeometry::TGeometry | ( | const char * | name, |
const char * | title | ||
) |
Geometry normal constructor.
Definition at line 117 of file TGeometry.cxx.
|
virtual |
Geometry default destructor.
Definition at line 200 of file TGeometry.cxx.
|
virtual |
Change Current Geometry to this.
Definition at line 246 of file TGeometry.cxx.
Referenced by na49view(), xtruDraw(), and xtruSamples().
Draw this Geometry.
Reimplemented from TObject.
Definition at line 254 of file TGeometry.cxx.
Referenced by na49view(), xtruDraw(), and xtruSamples().
|
virtual |
Search object identified by name in the geometry tree.
Reimplemented from TObject.
Definition at line 273 of file TGeometry.cxx.
Find object in a geometry node, material, etc.
Reimplemented from TObject.
Definition at line 264 of file TGeometry.cxx.
|
inline |
Definition at line 78 of file TGeometry.h.
Referenced by TVolume::DistancetoNodePrimitive(), TVolumeView::DistancetoPrimitive(), Local2Master(), Master2Local(), TVolumeView::Paint(), TNode::Paint(), TVolume::PaintNodePosition(), TVolumePosition::UpdatePosition(), and UpdateTempMatrix().
|
static |
Static function called by TROOT to search name in the geometry.
Returns a TObjArray containing a pointer to the found object and a pointer to the container where the object was found.
Definition at line 285 of file TGeometry.cxx.
Referenced by FindObject().
|
inline |
Definition at line 77 of file TGeometry.h.
Referenced by TNode::Local2Master(), Local2Master(), TNode::Master2Local(), and Master2Local().
|
inline |
Definition at line 127 of file TGeometry.h.
Referenced by GetCurrentPosition().
|
inline |
Definition at line 83 of file TGeometry.h.
Referenced by TNode::TNode(), and TNode::~TNode().
|
inline |
Definition at line 131 of file TGeometry.h.
|
inline |
Definition at line 135 of file TGeometry.h.
|
inline |
Definition at line 139 of file TGeometry.h.
|
inline |
Definition at line 81 of file TGeometry.h.
Referenced by Get(), TMaterial::TMaterial(), and TMaterial::~TMaterial().
|
inline |
Definition at line 82 of file TGeometry.h.
Referenced by Get(), TVolume::GetIdentity(), TVolumePosition::Mult(), TRotMatrix::TRotMatrix(), TVolumePosition::TVolumePosition(), TVolumeViewIter::UpdateTempMatrix(), and TRotMatrix::~TRotMatrix().
|
inline |
Definition at line 80 of file TGeometry.h.
Referenced by GetNode(), TNode::SetParent(), TNode::TNode(), and TNode::~TNode().
|
inline |
Definition at line 79 of file TGeometry.h.
Referenced by Get(), TShape::TShape(), and TShape::~TShape().
TMaterial * TGeometry::GetMaterial | ( | const char * | name | ) | const |
Return pointer to Material with name.
Definition at line 322 of file TGeometry.cxx.
Referenced by TShape::TShape().
Return pointer to Material with number.
Definition at line 330 of file TGeometry.cxx.
TNode * TGeometry::GetNode | ( | const char * | name | ) | const |
Return pointer to node with name in the geometry tree.
Definition at line 345 of file TGeometry.cxx.
Referenced by Get(), and na49view().
TRotMatrix * TGeometry::GetRotMatrix | ( | const char * | name | ) | const |
Return pointer to RotMatrix with name.
Definition at line 356 of file TGeometry.cxx.
Referenced by TVolume::Add(), ClassImp(), TVolume::GetIdentity(), TNode::TNode(), and TVolumeView::TVolumeView().
TRotMatrix * TGeometry::GetRotMatrixByNumber | ( | Int_t | number | ) | const |
Return pointer to RotMatrix with number.
Definition at line 364 of file TGeometry.cxx.
TShape * TGeometry::GetShape | ( | const char * | name | ) | const |
Return pointer to Shape with name.
Definition at line 379 of file TGeometry.cxx.
Referenced by TNode::TNode(), and TVolume::TVolume().
Return pointer to Shape with number.
Definition at line 387 of file TGeometry.cxx.
|
inlinevirtual |
Returns kTRUE in case object contains browsable objects (like containers or lists of other objects).
Reimplemented from TObject.
Definition at line 95 of file TGeometry.h.
Convert one point from local system to master reference system.
Note that before invoking this function, the global rotation matrix and translation vector for this node must have been computed. This is automatically done by the Paint functions. Otherwise TNode::UpdateMatrix should be called before.
Definition at line 407 of file TGeometry.cxx.
Referenced by TPolyLine3D::Paint(), TPolyMarker3D::Paint(), TMarker3DBox::Paint(), TShape::ShapeDistancetoPrimitive(), and TShape::TransformPoints().
Convert one point from local system to master reference system.
Note that before invoking this function, the global rotation matrix and translation vector for this node must have been computed. This is automatically done by the Paint functions. Otherwise TNode::UpdateMatrix should be called before.
Definition at line 441 of file TGeometry.cxx.
Convert one point from master system to local reference system.
Note that before invoking this function, the global rotation matrix and translation vector for this node must have been computed. This is automatically done by the Paint functions. Otherwise TNode::UpdateMatrix should be called before.
Definition at line 503 of file TGeometry.cxx.
Convert one point from master system to local reference system.
Note that before invoking this function, the global rotation matrix and translation vector for this node must have been computed. This is automatically done by the Paint functions. Otherwise TNode::UpdateMatrix should be called before.
Definition at line 532 of file TGeometry.cxx.
|
virtual |
Add a node to the current node in this geometry.
Definition at line 557 of file TGeometry.cxx.
assignment operator
Definition at line 168 of file TGeometry.cxx.
|
inlinevirtual |
Definition at line 104 of file TGeometry.h.
Referenced by TVolume::DistancetoNodePrimitive(), TVolumeView::DistancetoPrimitive(), TNode::DistancetoPrimitive(), TVolumeView::Paint(), TNode::Paint(), and TVolume::PaintNodePosition().
|
inlinevirtual |
Definition at line 103 of file TGeometry.h.
Referenced by TVolume::DistancetoNodePrimitive(), TVolumeView::DistancetoPrimitive(), TNode::DistancetoPrimitive(), TVolumeView::Paint(), TNode::Paint(), and TVolume::PaintNodePosition().
Recursively remove object from a Geometry list.
Reimplemented from TObject.
Definition at line 565 of file TGeometry.cxx.
Definition at line 106 of file TGeometry.h.
Referenced by na49view().
Definition at line 107 of file TGeometry.h.
Referenced by TNode::cd(), and TNode::~TNode().
Definition at line 108 of file TGeometry.h.
Referenced by TVolumeView::Draw(), TNode::Draw(), TVolumeView::GetLocalRange(), TVolume::GetLocalRange(), and TVolume::Paint().
|
inlinevirtual |
Definition at line 109 of file TGeometry.h.
Referenced by SetPosition().
|
inlinevirtual |
Definition at line 151 of file TGeometry.h.
Referenced by SetPosition().
|
inlinevirtual |
Definition at line 156 of file TGeometry.h.
Definition at line 143 of file TGeometry.h.
Definition at line 147 of file TGeometry.h.
Update global rotation matrix/translation vector for this node this function must be called before invoking Local2Master.
Definition at line 635 of file TGeometry.cxx.
|
virtual |
Update temp matrix.
Definition at line 661 of file TGeometry.cxx.
Referenced by TNode::DistancetoPrimitive(), TVolumeView::Draw(), TNode::Draw(), TVolumeView::GetLocalRange(), TVolume::GetLocalRange(), TVolumePosition::Mult(), TNode::Paint(), TVolume::Paint(), TVolumePosition::TVolumePosition(), TVolumeView::TVolumeView(), UpdateMatrix(), TVolumePosition::UpdatePosition(), TVolumeViewIter::UpdateTempMatrix(), and UpdateTempMatrix().
|
virtual |
Update temp matrix.
Definition at line 675 of file TGeometry.cxx.
|
static |
Compute new translation vector and global matrix.
Definition at line 710 of file TGeometry.cxx.
|
private |
Pointers to shapes.
Definition at line 55 of file TGeometry.h.
Referenced by GetBomb(), operator=(), SetBomb(), and TGeometry().
|
private |
Pointers to current rotation matrices.
Definition at line 51 of file TGeometry.h.
Referenced by GetCurrentNode(), operator=(), SetCurrentNode(), and TGeometry().
|
private |
Definition at line 56 of file TGeometry.h.
Referenced by GeomLevel(), GetCurrentReflection(), operator=(), PopLevel(), PushLevel(), SetGeomLevel(), TGeometry(), and UpdateMatrix().
|
private |
Definition at line 62 of file TGeometry.h.
Referenced by GetCurrentReflection(), operator=(), TGeometry(), and UpdateTempMatrix().
|
private |
Pointer to current node.
Definition at line 52 of file TGeometry.h.
Referenced by GetMaterialByNumber(), operator=(), TGeometry(), and ~TGeometry().
|
private |
Definition at line 46 of file TGeometry.h.
Referenced by Browse(), GetListOfMaterials(), GetMaterial(), GetMaterialByNumber(), ls(), operator=(), TGeometry(), and ~TGeometry().
|
private |
Definition at line 47 of file TGeometry.h.
Referenced by Browse(), GetListOfMatrices(), GetRotMatrix(), GetRotMatrixByNumber(), ls(), operator=(), TGeometry(), and ~TGeometry().
|
private |
Definition at line 50 of file TGeometry.h.
Referenced by GetCurrentMatrix(), operator=(), SetMatrix(), and TGeometry().
|
private |
Pointers to materials.
Definition at line 53 of file TGeometry.h.
Referenced by GetRotMatrixByNumber(), operator=(), TGeometry(), and ~TGeometry().
|
private |
Definition at line 49 of file TGeometry.h.
Referenced by Browse(), Draw(), GetListOfNodes(), ls(), operator=(), RecursiveRemove(), TGeometry(), and ~TGeometry().
|
private |
Definition at line 61 of file TGeometry.h.
Referenced by Local2Master(), Master2Local(), operator=(), TGeometry(), UpdateMatrix(), and UpdateTempMatrix().
|
private |
Pointers to rotation matrices.
Definition at line 54 of file TGeometry.h.
Referenced by GetShapeByNumber(), operator=(), TGeometry(), and ~TGeometry().
|
private |
Definition at line 48 of file TGeometry.h.
Referenced by Browse(), GetListOfShapes(), GetShape(), GetShapeByNumber(), ls(), operator=(), TGeometry(), and ~TGeometry().
|
private |
Definition at line 60 of file TGeometry.h.
Referenced by operator=(), TGeometry(), UpdateMatrix(), and UpdateTempMatrix().
|
private |
Definition at line 57 of file TGeometry.h.
Referenced by GetCurrentPosition(), Local2Master(), Master2Local(), operator=(), SetPosition(), TGeometry(), and UpdateTempMatrix().
|
private |
Definition at line 58 of file TGeometry.h.
Referenced by GetCurrentPosition(), Local2Master(), Master2Local(), operator=(), SetPosition(), TGeometry(), and UpdateTempMatrix().
|
private |
The global translation of the current node.
Definition at line 59 of file TGeometry.h.
Referenced by GetCurrentPosition(), Local2Master(), Master2Local(), operator=(), SetPosition(), TGeometry(), and UpdateTempMatrix().