CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Friends
DDRotation Class Reference

Represents a uniquely identifyable rotation matrix. More...

#include <DDTransform.h>

Inheritance diagram for DDRotation:
DDBase< DDName, DDRotationMatrix * >

Public Member Functions

 DDRotation ()
 refers to the unit-rotation (no rotation at all) More...
 
 DDRotation (const DDName &name)
 Creates a initialized reference-object or a reference to an allready defined rotation. More...
 
 DDRotation (const DDName &, DDRotationMatrix *)
 
DDRotationMatrixmatrix ()
 
const DDRotationMatrixrotation () const
 Returns the read-only rotation-matrix. More...
 
DDRotationMatrixrotation ()
 
- Public Member Functions inherited from DDBase< DDName, DDRotationMatrix * >
 DDBase ()
 
const DDNameddname () const
 
def_type isDefined () const
 
bool isValid () const
 true, if the wrapped pointer is valid More...
 
const DDNamename () const
 
 operator bool () const
 
bool operator< (const DDBase &b) const
 
bool operator== (const DDBase &b) const
 
bool operator> (const DDBase &b) const
 
const DDI::rep_traits< DDName,
DDRotationMatrix * >
::reference 
rep () const
 
DDI::rep_traits< DDName,
DDRotationMatrix * >
::reference 
rep ()
 
std::string toString () const
 
const DDI::rep_traits< DDName,
DDRotationMatrix * >
::reference 
val () const
 
const DDI::rep_traits< DDName,
DDRotationMatrix * >
::reference 
val ()
 
virtual ~DDBase ()
 

Private Member Functions

 DDRotation (DDRotationMatrix *)
 

Friends

DDRotation DDanonymousRot (DDRotationMatrix *)
 Defines a anonymous rotation or rotation-reflection matrix. More...
 
DDRotation DDrot (const DDName &, DDRotationMatrix *)
 Definition of a uniquely identifiable rotation matrix named by DDName name. More...
 
DDRotation DDrotReflect (const DDName &, double, double, double, double, double, double)
 Defines a rotation-reflection in the Geant3 way. More...
 
std::ostream & operator<< (std::ostream &, const DDRotation &)
 

Additional Inherited Members

- Public Types inherited from DDBase< DDName, DDRotationMatrix * >
typedef std::pair< const
DDName *, bool > 
def_type
 
typedef DDRotationMatrixpimpl_type
 
typedef DDI::rep_type< DDName,
pimpl_type > * 
prep_type
 
typedef DDI::Singleton
< DDI::Store< DDName,
DDRotationMatrix * > > 
StoreT
 
- Static Public Member Functions inherited from DDBase< DDName, DDRotationMatrix * >
static auto begin ()
 
static void clear ()
 
static auto end ()
 
static size_t size ()
 
- Protected Attributes inherited from DDBase< DDName, DDRotationMatrix * >
prep_type prep_
 

Detailed Description

Represents a uniquely identifyable rotation matrix.

An object of this class is a reference-object and thus leightweighted. It is uniquely identified by its DDName. Further details concerning reference-objects can be found in the documentation of DDLogicalPart.

DDRotation encapsulates CLHEP CLHEP::HepRotation.

Definition at line 66 of file DDTransform.h.

Constructor & Destructor Documentation

DDRotation::DDRotation ( )

refers to the unit-rotation (no rotation at all)

Definition at line 44 of file DDRotation.cc.

DDRotation::DDRotation ( const DDName name)

Creates a initialized reference-object or a reference to an allready defined rotation.

A reference-object to a defined rotation is created if a rotation was already defined usind DDrot(). Otherwise a (default) initialized reference-object named name is created. At any later stage the rotation matrix can be defined using DDrot(). All initialized-reference object referring to the same name will then immidialtely refere to the matrix created by DDrot().

DDRotation is a lightweighted reference-object. For further details concerning reference-object refere to the documentation of DDLogicalPart.

Definition at line 60 of file DDRotation.cc.

DDRotation::DDRotation ( const DDName name,
DDRotationMatrix rot 
)

Definition at line 67 of file DDRotation.cc.

DDRotation::DDRotation ( DDRotationMatrix rot)
private

Definition at line 75 of file DDRotation.cc.

Member Function Documentation

DDRotationMatrix* DDRotation::matrix ( void  )
inline

Definition at line 94 of file DDTransform.h.

References rotation().

94 { return rotation(); }
const DDRotationMatrix * rotation() const
Returns the read-only rotation-matrix.
Definition: DDTransform.h:90
const DDRotationMatrix* DDRotation::rotation ( void  ) const
inline

Returns the read-only rotation-matrix.

Definition at line 90 of file DDTransform.h.

References DDBase< DDName, DDRotationMatrix * >::rep().

Referenced by matrix(), DDPosData::rot(), and DDPosData::rotation().

90 { return &(rep()); }
const DDI::rep_traits< DDName, DDRotationMatrix * >::reference rep() const
Definition: DDBase.h:84
DDRotationMatrix* DDRotation::rotation ( void  )
inline

Definition at line 92 of file DDTransform.h.

References DDBase< DDName, DDRotationMatrix * >::rep().

92 { return &(rep()); }
const DDI::rep_traits< DDName, DDRotationMatrix * >::reference rep() const
Definition: DDBase.h:84

Friends And Related Function Documentation

DDRotation DDanonymousRot ( DDRotationMatrix rot)
friend

Defines a anonymous rotation or rotation-reflection matrix.

It can't be addressed by a unique DDName. Once created, it's the users responsibility to keep the reference object DDRotation! Will be mostly used by algorithmic positioning.

Definition at line 194 of file DDRotation.cc.

DDRotation DDrot ( const DDName name,
DDRotationMatrix rot 
)
friend

Definition of a uniquely identifiable rotation matrix named by DDName name.

DDrot() returns a reference-object DDRotation representing the rotation matrix rot.

The user must not free memory allocated for rot!

Definition at line 90 of file DDRotation.cc.

DDRotation DDrotReflect ( const DDName name,
double  thetaX,
double  phiX,
double  thetaY,
double  phiY,
double  thetaZ,
double  phiZ 
)
friend

Defines a rotation-reflection in the Geant3 way.

The resulting matrix MUST be a LEFThanded orthonormal system, otherwise a DDException will be thrown!

Definition at line 135 of file DDRotation.cc.

std::ostream& operator<< ( std::ostream &  os,
const DDRotation r 
)
friend

Definition at line 20 of file DDRotation.cc.