DD4hep
1.30.0
Detector Description Toolkit for High Energy Physics
|
Segmentation base class describing cylindrical grid segmentation in the Phi-Z cylinder. More...
#include <CylindricalGridPhiZ.h>
Public Member Functions | |
CylindricalGridPhiZ (const std::string &cellEncoding) | |
default constructor using an arbitrary type More... | |
CylindricalGridPhiZ (const BitFieldCoder *decoder) | |
Default constructor used by derived classes passing an existing decoder. More... | |
virtual | ~CylindricalGridPhiZ () |
destructor More... | |
virtual Vector3D | position (const CellID &cellID) const |
determine the local based on the cell ID More... | |
virtual CellID | cellID (const Vector3D &localPosition, const Vector3D &globalPosition, const VolumeID &volumeID) const |
determine the cell ID based on the position More... | |
double | gridSizePhi () const |
access the grid size in phi More... | |
double | gridSizeZ () const |
access the grid size in Z More... | |
double | offsetPhi () const |
access the coordinate offset in phi More... | |
double | offsetZ () const |
access the coordinate offset in Z More... | |
double | radius () const |
access the radius More... | |
const std::string & | fieldNamePhi () const |
access the field name used for phi More... | |
const std::string & | fieldNameZ () const |
access the field name used for Z More... | |
void | setGridSizePhi (double cellSize) |
set the grid size in phi More... | |
void | setGridSizeZ (double cellSize) |
set the grid size in Z More... | |
void | setOffsetPhi (double offset) |
set the coordinate offset in phi More... | |
void | setOffsetZ (double offset) |
set the coordinate offset in Z More... | |
void | setRadius (double radius) |
set the radius More... | |
void | setFieldNamePhi (const std::string &fieldName) |
set the field name used for phi More... | |
void | setFieldNameZ (const std::string &fieldName) |
set the field name used for Z More... | |
virtual std::vector< double > | cellDimensions (const CellID &cellID) const |
Returns a vector<double> of the cellDimensions of the given cell ID in the following order: R*dPhi,dZ. More... | |
Public Member Functions inherited from dd4hep::DDSegmentation::CylindricalSegmentation | |
virtual | ~CylindricalSegmentation () |
Destructor. More... | |
Public Member Functions inherited from dd4hep::DDSegmentation::Segmentation | |
virtual | ~Segmentation () |
Destructor. More... | |
virtual void | addSubsegmentation (long key_min, long key_max, Segmentation *entry) |
Add subsegmentation. Call only valid for Multi-segmentations. Default implementation throws an exception. More... | |
virtual VolumeID | volumeID (const CellID &cellID) const |
Determine the volume ID from the full cell ID by removing all local fields. More... | |
virtual void | neighbours (const CellID &cellID, std::set< CellID > &neighbours) const |
Calculates the neighbours of the given cell ID and adds them to the list of neighbours. More... | |
virtual std::string | fieldDescription () const |
Access the encoding string. More... | |
virtual const std::string & | name () const |
Access the segmentation name. More... | |
virtual void | setName (const std::string &value) |
Set the segmentation name. More... | |
virtual const std::string & | type () const |
Access the segmentation type. More... | |
virtual const std::string & | description () const |
Access the description of the segmentation. More... | |
virtual const BitFieldCoder * | decoder () const |
Access the underlying decoder. More... | |
virtual void | setDecoder (const BitFieldCoder *decoder) |
Set the underlying decoder. More... | |
virtual Parameter | parameter (const std::string ¶meterName) const |
Access to parameter by name. More... | |
virtual Parameters | parameters () const |
Access to all parameters. More... | |
virtual void | setParameters (const Parameters ¶meters) |
Set all parameters from an existing set of parameters. More... | |
Protected Attributes | |
double | _gridSizePhi |
the grid size in phi More... | |
double | _offsetPhi |
the coordinate offset in phi More... | |
double | _gridSizeZ |
the grid size in Z More... | |
double | _offsetZ |
the coordinate offset in Z More... | |
double | _radius |
the radius More... | |
std::string | _phiId |
the field name used for phi More... | |
std::string | _zId |
the field name used for Z More... | |
Protected Attributes inherited from dd4hep::DDSegmentation::Segmentation | |
std::string | _name |
The segmentation name. More... | |
std::string | _type |
The segmentation type. More... | |
std::string | _description |
The description of the segmentation. More... | |
std::map< std::string, Parameter > | _parameters |
The parameters for this segmentation. More... | |
std::map< std::string, StringParameter > | _indexIdentifiers |
The indices used for the encoding. More... | |
const BitFieldCoder * | _decoder = 0 |
The cell ID encoder and decoder. More... | |
bool | _ownsDecoder = false |
Keeps track of the decoder ownership. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from dd4hep::DDSegmentation::CylindricalSegmentation | |
CylindricalSegmentation (const std::string &cellEncoding) | |
Default constructor using an arbitrary type. More... | |
CylindricalSegmentation (const BitFieldCoder *decoder) | |
Default constructor used by derived classes passing an existing decoder. More... | |
Protected Member Functions inherited from dd4hep::DDSegmentation::Segmentation | |
Segmentation (const std::string &cellEncoding="") | |
Default constructor used by derived classes passing the encoding string. More... | |
Segmentation (const BitFieldCoder *decoder) | |
Default constructor used by derived classes passing an existing decoder. More... | |
template<typename TYPE > | |
void | registerParameter (const std::string &nam, const std::string &desc, TYPE ¶m, const TYPE &defaultVal, UnitType unitTyp=SegmentationParameter::NoUnit, bool isOpt=false) |
Add a parameter to this segmentation. Used by derived classes to define their parameters. More... | |
void | registerIdentifier (const std::string &nam, const std::string &desc, std::string &ident, const std::string &defaultVal) |
Add a cell identifier to this segmentation. Used by derived classes to define their required identifiers. More... | |
Static Protected Member Functions inherited from dd4hep::DDSegmentation::Segmentation | |
static double | binToPosition (FieldID bin, double cellSize, double offset=0.) |
Helper method to convert a bin number to a 1D position. More... | |
static int | positionToBin (double position, double cellSize, double offset=0.) |
Helper method to convert a 1D position to a cell ID. More... | |
static double | binToPosition (FieldID bin, std::vector< double > const &cellBoundaries, double offset=0.) |
Helper method to convert a bin number to a 1D position given a vector of binBoundaries. More... | |
static int | positionToBin (double position, std::vector< double > const &cellBoundaries, double offset=0.) |
Helper method to convert a 1D position to a cell ID given a vector of binBoundaries. More... | |
Segmentation base class describing cylindrical grid segmentation in the Phi-Z cylinder.
Definition at line 27 of file CylindricalGridPhiZ.h.
dd4hep::DDSegmentation::CylindricalGridPhiZ::CylindricalGridPhiZ | ( | const std::string & | cellEncoding | ) |
default constructor using an arbitrary type
default constructor using an encoding string
Definition at line 27 of file CylindricalGridPhiZ.cpp.
dd4hep::DDSegmentation::CylindricalGridPhiZ::CylindricalGridPhiZ | ( | const BitFieldCoder * | decoder | ) |
Default constructor used by derived classes passing an existing decoder.
Definition at line 44 of file CylindricalGridPhiZ.cpp.
|
virtual |
destructor
Definition at line 61 of file CylindricalGridPhiZ.cpp.
|
virtual |
Returns a vector<double> of the cellDimensions of the given cell ID in the following order: R*dPhi,dZ.
Returns a vector of the cellDimensions of the given cell ID
cellID | is ignored as all cells have the same dimension |
Reimplemented from dd4hep::DDSegmentation::Segmentation.
Definition at line 93 of file CylindricalGridPhiZ.cpp.
|
virtual |
determine the cell ID based on the position
Implements dd4hep::DDSegmentation::Segmentation.
Definition at line 80 of file CylindricalGridPhiZ.cpp.
|
inline |
access the field name used for phi
Definition at line 61 of file CylindricalGridPhiZ.h.
|
inline |
access the field name used for Z
Definition at line 65 of file CylindricalGridPhiZ.h.
|
inline |
access the grid size in phi
Definition at line 41 of file CylindricalGridPhiZ.h.
|
inline |
access the grid size in Z
Definition at line 45 of file CylindricalGridPhiZ.h.
|
inline |
access the coordinate offset in phi
Definition at line 49 of file CylindricalGridPhiZ.h.
|
inline |
access the coordinate offset in Z
Definition at line 53 of file CylindricalGridPhiZ.h.
|
virtual |
determine the local based on the cell ID
determine the position based on the cell ID
Implements dd4hep::DDSegmentation::Segmentation.
Definition at line 66 of file CylindricalGridPhiZ.cpp.
|
inline |
access the radius
Definition at line 57 of file CylindricalGridPhiZ.h.
|
inline |
set the field name used for phi
Definition at line 89 of file CylindricalGridPhiZ.h.
|
inline |
set the field name used for Z
Definition at line 93 of file CylindricalGridPhiZ.h.
|
inline |
set the grid size in phi
Definition at line 69 of file CylindricalGridPhiZ.h.
|
inline |
set the grid size in Z
Definition at line 73 of file CylindricalGridPhiZ.h.
|
inline |
set the coordinate offset in phi
Definition at line 77 of file CylindricalGridPhiZ.h.
|
inline |
set the coordinate offset in Z
Definition at line 81 of file CylindricalGridPhiZ.h.
|
inline |
set the radius
Definition at line 85 of file CylindricalGridPhiZ.h.
|
protected |
the grid size in phi
Definition at line 109 of file CylindricalGridPhiZ.h.
|
protected |
the grid size in Z
Definition at line 113 of file CylindricalGridPhiZ.h.
|
protected |
the coordinate offset in phi
Definition at line 111 of file CylindricalGridPhiZ.h.
|
protected |
the coordinate offset in Z
Definition at line 115 of file CylindricalGridPhiZ.h.
|
protected |
the field name used for phi
Definition at line 119 of file CylindricalGridPhiZ.h.
|
protected |
the radius
Definition at line 117 of file CylindricalGridPhiZ.h.
|
protected |
the field name used for Z
Definition at line 121 of file CylindricalGridPhiZ.h.