DD4hep
1.30.0
Detector Description Toolkit for High Energy Physics
|
Implementation class for the grid YZ segmentation. More...
#include <CartesianGridYZ.h>
Public Member Functions | |
CartesianGridYZ ()=default | |
Default constructor. More... | |
CartesianGridYZ (const CartesianGridYZ &e)=default | |
Copy constructor. More... | |
CartesianGridYZ (const Segmentation &e) | |
Copy Constructor from segmentation base object. More... | |
CartesianGridYZ (const Handle< Object > &e) | |
Copy constructor from handle. More... | |
template<typename Q > | |
CartesianGridYZ (const Handle< Q > &e) | |
Copy constructor from other polymorph/equivalent handle. More... | |
CartesianGridYZ & | operator= (const CartesianGridYZ &seg)=default |
Assignment operator. More... | |
bool | operator== (const CartesianGridYZ &seg) const |
Equality operator. More... | |
Position | position (const CellID &cellID) const |
determine the position based on the cell ID More... | |
CellID | cellID (const Position &local, const Position &global, const VolumeID &volID) const |
determine the cell ID based on the position More... | |
double | gridSizeY () const |
access the grid size in Y More... | |
double | gridSizeZ () const |
access the grid size in Z More... | |
void | setGridSizeY (double cellSize) const |
set the grid size in Y More... | |
void | setGridSizeZ (double cellSize) const |
set the grid size in Z More... | |
double | offsetY () const |
access the coordinate offset in Y More... | |
double | offsetZ () const |
access the coordinate offset in Z More... | |
void | setOffsetY (double offset) const |
set the coordinate offset in Y More... | |
void | setOffsetZ (double offset) const |
set the coordinate offset in Z More... | |
const std::string & | fieldNameX () const |
access the field name used for X More... | |
const std::string & | fieldNameY () const |
access the field name used for Y More... | |
const std::string & | fieldNameZ () const |
access the field name used for Z More... | |
std::vector< double > | cellDimensions (const CellID &cellID) const |
Returns a vector<double> of the cellDimensions of the given cell ID in natural order of dimensions, e.g., dx/dy/dz, or dr/r*dPhi. More... | |
Public Member Functions inherited from dd4hep::Handle< T > | |
Handle ()=default | |
Default constructor. More... | |
Handle (Handle< T > &&element)=default | |
Copy constructor. More... | |
Handle (const Handle< T > &element)=default | |
Copy constructor. More... | |
Handle (T *element) | |
Initializing constructor from pointer. More... | |
template<typename Q > | |
Handle (Q *element) | |
Initializing constructor from unrelated pointer with type checking. More... | |
template<typename Q > | |
Handle (const Handle< Q > &element) | |
Initializing constructor from unrelated handle with type checking. More... | |
Handle< T > & | operator= (Handle< T > &&element)=default |
Assignment move operator. More... | |
Handle< T > & | operator= (const Handle< T > &element)=default |
Assignment copy operator. More... | |
bool | operator== (const Handle< T > &element) const |
Boolean operator == used for RB tree insertions. More... | |
bool | operator< (const Handle< T > &element) const |
Boolean operator < used for RB tree insertions. More... | |
bool | operator> (const Handle< T > &element) const |
Boolean operator > used for RB tree insertions. More... | |
bool | isValid () const |
Check the validity of the object held by the handle. More... | |
bool | operator! () const |
Check the validity of the object held by the handle. More... | |
Handle< T > & | clear () |
Release the object held by the handle. More... | |
T * | operator-> () const |
Access the held object using the -> operator. More... | |
operator T& () const | |
Automatic type conversion to an object references. More... | |
T & | operator* () const |
Access the held object using the * operator. More... | |
T * | ptr () const |
Access to the held object. More... | |
template<typename Q > | |
Q * | _ptr () const |
Access to an unrelated object type. More... | |
template<typename Q > | |
Q * | data () const |
Access to an unrelated object type. More... | |
template<typename Q > | |
Q & | object () const |
Access to an unrelated object type. More... | |
T * | access () const |
Checked object access. Throws invalid handle runtime exception if invalid handle. More... | |
const char * | name () const |
Access the object name (or "" if not supported by the object) More... | |
void | assign (Object *n, const std::string &nam, const std::string &title) |
Assign a new named object. Note: object references must be managed by the user. More... | |
void | destroy () |
Destroy the underlying object (be careful here: things are not reference counted)! More... | |
void | assign (_Segmentation *s, const std::string &n, const std::string &) |
const char * | name () const |
const char * | name () const |
void | assign (NamedObject *p, const std::string &n, const std::string &t) |
Additional Inherited Members | |
Public Types inherited from dd4hep::Handle< T > | |
typedef T | Object |
Extern accessible definition of the contained element type. More... | |
typedef Handle< T > | Base |
Self type: used by sub-classes. More... | |
Static Public Member Functions inherited from dd4hep::Handle< T > | |
static void | bad_assignment (const std::type_info &from, const std::type_info &to) |
Helper routine called when unrelated types are assigned. More... | |
Public Attributes inherited from dd4hep::Handle< T > | |
T * | m_element {nullptr} |
Single and only data member: Reference to the actual element. More... | |
Implementation class for the grid YZ segmentation.
Concrete user handle to serve specific needs of client code which requires access to the base functionality not served by the super-class Segmentation.
Note: We only check the validity of the underlying handle. If for whatever reason the implementation object is not valid This is not checked. In principle this CANNOT happen unless some brain-dead has fiddled with the handled object directly.....
Note: The handle base corresponding to this object in for conveniance reasons instantiated in dd4hep/src/Segmentations.cpp.
Definition at line 51 of file CartesianGridYZ.h.
|
default |
Default constructor.
|
default |
Copy constructor.
|
inline |
Copy Constructor from segmentation base object.
Definition at line 58 of file CartesianGridYZ.h.
Copy constructor from handle.
Definition at line 60 of file CartesianGridYZ.h.
|
inline |
Copy constructor from other polymorph/equivalent handle.
Definition at line 63 of file CartesianGridYZ.h.
std::vector< double > CartesianGridYZ::cellDimensions | ( | const CellID & | cellID | ) | const |
Returns a vector<double> of the cellDimensions of the given cell ID in natural order of dimensions, e.g., dx/dy/dz, or dr/r*dPhi.
Returns a vector of the cellDimensions of the given cell ID
cellID | is ignored as all cells have the same dimension |
Definition at line 84 of file CartesianGridYZ.cpp.
dd4hep::CellID CartesianGridYZ::cellID | ( | const Position & | local, |
const Position & | global, | ||
const VolumeID & | volID | ||
) | const |
determine the cell ID based on the position
Definition at line 26 of file CartesianGridYZ.cpp.
const std::string& dd4hep::CartesianGridYZ::fieldNameX | ( | ) | const |
access the field name used for X
const std::string & CartesianGridYZ::fieldNameY | ( | ) | const |
access the field name used for Y
Definition at line 74 of file CartesianGridYZ.cpp.
const std::string & CartesianGridYZ::fieldNameZ | ( | ) | const |
access the field name used for Z
Definition at line 79 of file CartesianGridYZ.cpp.
double CartesianGridYZ::gridSizeY | ( | ) | const |
access the grid size in Y
Definition at line 34 of file CartesianGridYZ.cpp.
double CartesianGridYZ::gridSizeZ | ( | ) | const |
access the grid size in Z
Definition at line 39 of file CartesianGridYZ.cpp.
double CartesianGridYZ::offsetY | ( | ) | const |
access the coordinate offset in Y
Definition at line 54 of file CartesianGridYZ.cpp.
double CartesianGridYZ::offsetZ | ( | ) | const |
access the coordinate offset in Z
Definition at line 59 of file CartesianGridYZ.cpp.
|
default |
Assignment operator.
|
inline |
Equality operator.
Definition at line 67 of file CartesianGridYZ.h.
determine the position based on the cell ID
Definition at line 21 of file CartesianGridYZ.cpp.
void CartesianGridYZ::setGridSizeY | ( | double | cellSize | ) | const |
set the grid size in Y
Definition at line 44 of file CartesianGridYZ.cpp.
void CartesianGridYZ::setGridSizeZ | ( | double | cellSize | ) | const |
set the grid size in Z
Definition at line 49 of file CartesianGridYZ.cpp.
void CartesianGridYZ::setOffsetY | ( | double | offset | ) | const |
set the coordinate offset in Y
Definition at line 64 of file CartesianGridYZ.cpp.
void CartesianGridYZ::setOffsetZ | ( | double | offset | ) | const |
set the coordinate offset in Z
Definition at line 69 of file CartesianGridYZ.cpp.