TVolumePosition


class description - source file - inheritance tree

class TVolumePosition : public TObject


    public:
TVolumePosition TVolumePosition(TVolume* node = 0, Double_t x = 0, Double_t y = 0, Double_t z = 0, TRotMatrix* matrix = 0) TVolumePosition TVolumePosition(TVolume* node, Double_t x, Double_t y, Double_t z, const Text_t* matrixname) TVolumePosition TVolumePosition(const TVolumePosition& pos) virtual void ~TVolumePosition() virtual void Browse(TBrowser* b) static TClass* Class() virtual Double_t* Cormx2Master(const Double_t* localCorr, Double_t* masterCorr) virtual Float_t* Cormx2Master(const Float_t* localCorr, Float_t* masterCorr) virtual TDataSet* DefineSet() virtual Int_t DistancetoPrimitive(Int_t px, Int_t py) virtual void Draw(Option_t* depth = "3") virtual Float_t* Errmx2Master(const Float_t* localError, Float_t* masterError) virtual Double_t* Errmx2Master(const Double_t* localError, Double_t* masterError) virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py) virtual UInt_t GetId() const virtual TRotMatrix* GetMatrix() const virtual const Char_t* GetName() const virtual TVolume* GetNode() const virtual Text_t* GetObjectInfo(Int_t px, Int_t py) const const Option_t* GetOption() const Int_t GetVisibility() const virtual Double_t GetX(Int_t indx = 0) const virtual Double_t GetY() const virtual Double_t GetZ() const virtual Bool_t Is3D() const virtual TClass* IsA() const virtual Bool_t IsFolder() const virtual Double_t* Local2Master(const Double_t* local, Double_t* master, Int_t nPoints = 1) virtual Float_t* Local2Master(const Float_t* local, Float_t* master, Int_t nPoints = 1) virtual void Paint(Option_t* option) virtual void Print(Option_t* option) const virtual TVolumePosition* Reset(TVolume* node = 0, Double_t x = 0, Double_t y = 0, Double_t z = 0, TRotMatrix* matrix = 0) virtual void SavePrimitive(ofstream& out, Option_t* option) virtual void SetId(UInt_t id) virtual void SetLineAttributes() virtual void SetMatrix(TRotMatrix* matrix = 0) virtual void SetNode(TVolume* node) virtual void SetPosition(Double_t x = 0, Double_t y = 0, Double_t z = 0) virtual void SetVisibility(Int_t vis = 1) virtual void SetX(Double_t x) virtual void SetY(Double_t y) virtual void SetZ(Double_t z) virtual void ShowMembers(TMemberInspector& insp, char* parent) virtual void Streamer(TBuffer& b) void StreamerNVirtual(TBuffer& b) virtual void UpdatePosition(Option_t* option)

Data Members


    protected:
Double_t fX[3] X offset with respect to parent object TRotMatrix* fMatrix ->Pointer to rotation matrix TVolume* fNode Refs pointer to the node defined UInt_t fId Unique ID of this position

Class Description

*-*-*-*-*-*-*-*-* S T N O D E P O S I T I O N   description *-*-*-*-*-*-*-*-*-
*-*               ===========================
*-*
*-*    A TVolumePosition object is used to build the geometry hierarchy (see TGeometry).
*-*    A node may contain other nodes.
*-*
*-*    A geometry node has attributes:
*-*      - name and title
*-*      - pointer to the referenced shape (see TShape).
*-*      - x,y,z offset with respect to the mother node.
*-*      - pointer to the rotation matrix (see TRotMatrix).
*-*
*-*    A node can be drawn.
*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

TVolumePosition(TVolume *node,Double_t x, Double_t y, Double_t z, const Text_t *matrixname) : fMatrix(0),fNode(node),fId(0)
*-*-*-*-*-*-*-*-*-*-*Node normal constructor*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*                  ======================
*-*
*-*    name    is the name of the node
*-*    title   is title
*-*    x,y,z   are the offsets of the volume with respect to his mother
*-*    matrixname  is the name of the rotation matrix
*-*
*-*    This new node is added into the list of sons of the current node
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

TVolumePosition(TVolume *node,Double_t x, Double_t y, Double_t z, TRotMatrix *matrix) : fMatrix(matrix),fNode(node),fId(0)
*-*-*-*-*-*-*-*-*-*-*Node normal constructor*-*-*-*-*-*-*-*-*-*-*
*-*                  ================================
*-*
*-*    name    is the name of the node
*-*    title   is title
*-*    x,y,z   are the offsets of the volume with respect to his mother
*-*    matrix  is the pointer to the rotation matrix
*-*
*-*    This new node is added into the list of sons of the current node
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

void Browse(TBrowser *b)

Int_t DistancetoPrimitive(Int_t, Int_t)
*-*-*-*-*-*-*-*-*-*-*Compute distance from point px,py to a Node*-*-*-*-*-*
*-*                  ===========================================
*-*  Compute the closest distance of approach from point px,py to this node.
*-*  The distance is computed in pixels units.
*-*
*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

void Draw(Option_t *option)
*-*-*-*-*-*-*-*-*-*-*-*Draw Referenced node with current parameters*-*-*-*
*-*                   =============================================

void ExecuteEvent(Int_t, Int_t, Int_t)
*-*-*-*-*-*-*-*-*-*-*Execute action corresponding to one event*-*-*-*
*-*                  =========================================
*-*  This member function must be implemented to realize the action
*-*  corresponding to the mouse click on the object in the window
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

Text_t* GetObjectInfo(Int_t, Int_t) const

Double_t* Errmx2Master(const Double_t *localError, Double_t *masterError)

Float_t* Errmx2Master(const Float_t *localError, Float_t *masterError)

Double_t* Cormx2Master(const Double_t *localCorr, Double_t *masterCorr)

Float_t* Cormx2Master(const Float_t *localCorr, Float_t *masterCorr)

Double_t* Local2Master(const Double_t *local, Double_t *master, Int_t nPoints)
*-*-*-*-*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 TVolumePosition::UpdateMatrix should be called before.

Float_t* Local2Master(const Float_t *local, Float_t *master, Int_t nPoints)
*-*-*-*Convert nPoints points 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 TVolumePosition::UpdateMatrix should be called before.


void Paint(Option_t *)
*-*-*-*-*-*-*-*-*-*-*-*Paint Referenced node with current parameters*-*-*-*
*-*                   ==============================================
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

void Print(Option_t *) const

TVolumePosition* Reset(TVolume *node,Double_t x, Double_t y, Double_t z, TRotMatrix *matrix)
*-*-*-*-*-*-*-*-*-*-*-*-*-*-* Reset this position *-*-*-*-*-*-*-*-*-*-*
*-*                           ===================
*-*    x,y,z   are the offsets of the volume with respect to his mother
*-*    matrix  is the pointer to the rotation matrix
*-*
*-*    This method is to re-use the memory this object without delete/create steps
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

void SavePrimitive(ofstream &, Option_t *)

void SetLineAttributes()

void UpdatePosition(Option_t *)

void SetVisibility(Int_t vis)



Inline Functions


        TVolumePosition TVolumePosition(const TVolumePosition& pos)
              TDataSet* DefineSet()
            TRotMatrix* GetMatrix() const
               TVolume* GetNode() const
        const Option_t* GetOption() const
          const Char_t* GetName() const
                  Int_t GetVisibility() const
               Double_t GetX(Int_t indx = 0) const
               Double_t GetY() const
               Double_t GetZ() const
                 UInt_t GetId() const
                 Bool_t IsFolder() const
                 Bool_t Is3D() const
                   void SetMatrix(TRotMatrix* matrix = 0)
                   void SetNode(TVolume* node)
                   void SetPosition(Double_t x = 0, Double_t y = 0, Double_t z = 0)
                   void SetX(Double_t x)
                   void SetY(Double_t y)
                   void SetZ(Double_t z)
                   void SetId(UInt_t id)
                TClass* Class()
                TClass* IsA() const
                   void ShowMembers(TMemberInspector& insp, char* parent)
                   void Streamer(TBuffer& b)
                   void StreamerNVirtual(TBuffer& b)
                   void ~TVolumePosition()


Author: Valery Fine(fine@bnl.gov) 25/12/98
Last update: root/star:$Name: $:$Id: TVolumePosition.cxx,v 1.1 2002/05/27 16:27:00 rdm Exp $


ROOT page - Class index - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.