|
| Sphere ()=default |
| Default constructor. More...
|
|
| Sphere (Sphere &&e)=default |
| Move Constructor. More...
|
|
| Sphere (const Sphere &e)=default |
| Copy Constructor. More...
|
|
template<typename Q > |
| Sphere (const Q *p) |
| Constructor to be used with an existing object. More...
|
|
template<typename Q > |
| Sphere (const Handle< Q > &e) |
| Constructor to be used when passing an already created object. More...
|
|
| Sphere (double rmin, double rmax, double startTheta=0.0, double endTheta=M_PI, double startPhi=0.0, double endPhi=2. *M_PI) |
| Constructor to create a new anonymous object with attribute initialization. More...
|
|
template<typename RMIN , typename RMAX , typename STARTTHETA = double, typename ENDTHETA = double, typename STARTPHI = double, typename ENDPHI = double> |
| Sphere (RMIN rmin, RMAX rmax, STARTTHETA startTheta=0.0, ENDTHETA endTheta=M_PI, STARTPHI startPhi=0.0, ENDPHI endPhi=2. *M_PI) |
| Constructor to create a new anonymous object with generic attribute initialization. More...
|
|
| Sphere (const std::string &nam, double rmin, double rmax, double startTheta=0.0, double endTheta=M_PI, double startPhi=0.0, double endPhi=2. *M_PI) |
| Constructor to create a new identified object with attribute initialization. More...
|
|
template<typename RMIN , typename RMAX , typename STARTTHETA = double, typename ENDTHETA = double, typename STARTPHI = double, typename ENDPHI = double> |
| Sphere (const std::string &nam, RMIN rmin, RMAX rmax, STARTTHETA startTheta=0.0, ENDTHETA endTheta=M_PI, STARTPHI startPhi=0.0, ENDPHI endPhi=2. *M_PI) |
| Constructor to create a new identified object with generic attribute initialization. More...
|
|
Sphere & | operator= (Sphere &©)=default |
| Move Assignment operator. More...
|
|
Sphere & | operator= (const Sphere ©)=default |
| Copy Assignment operator. More...
|
|
Sphere & | setDimensions (double rmin, double rmax, double startTheta, double endTheta, double startPhi, double endPhi) |
| Set the Sphere dimensions. More...
|
|
double | startPhi () const |
| Accessor: start-phi value. More...
|
|
double | endPhi () const |
| Accessor: end-phi value. More...
|
|
double | startTheta () const |
| Accessor: start-theta value. More...
|
|
double | endTheta () const |
| Accessor: end-theta value. More...
|
|
double | rMin () const |
| Accessor: r-min value. More...
|
|
double | rMax () const |
| Accessor: r-max value. More...
|
|
| Solid_type ()=default |
| Default constructor for uninitialized object. More...
|
|
| Solid_type (Solid_type &&e)=default |
| Move constructor. More...
|
|
| Solid_type (const Solid_type &e)=default |
| Copy constructor. More...
|
|
| Solid_type (TGeoSphere *p) |
| Direct assignment using the implementation pointer. More...
|
|
| Solid_type (Handle< TGeoSphere > &&e) |
| Move Constructor from handle. More...
|
|
| Solid_type (const Handle< TGeoSphere > &e) |
| Copy Constructor from handle. More...
|
|
| Solid_type (const Handle< Q > &e) |
| Constructor to be used when passing an already created object: need to check pointers. More...
|
|
Solid_type & | operator= (Solid_type &©)=default |
| Assignment move operator. More...
|
|
Solid_type & | operator= (const Solid_type ©)=default |
| Assignment copy operator. More...
|
|
const char * | name () const |
| Access to shape name. More...
|
|
Solid_type< TGeoSphere > & | setName (const char *value) |
| Set new shape name. More...
|
|
Solid_type< TGeoSphere > & | setName (const std::string &value) |
| Set new shape name. More...
|
|
const char * | title () const |
| Access to shape title (GetTitle accessor of the TGeoShape) More...
|
|
const char * | type () const |
| Access to shape type (The TClass name of the ROOT implementation) More...
|
|
| operator TGeoSphere * () const |
| Auto conversion to underlying ROOT object. More...
|
|
TGeoSphere * | operator-> () const |
| Overloaded operator -> to access underlying object. More...
|
|
std::vector< double > | dimensions () |
| Access the dimensions of the shape: inverse of the setDimensions member function. More...
|
|
Solid_type & | setDimensions (const std::vector< double > ¶ms) |
| Set the shape dimensions. As for the TGeo shape, but angles in rad rather than degrees. More...
|
|
std::string | toString (int precision=2) const |
| Conversion to string for pretty print. More...
|
|
TGeoVolume * | divide (const Volume &voldiv, const std::string &divname, int iaxis, int ndiv, double start, double step) const |
| Divide volume into subsections (See the ROOT manuloa for details) More...
|
|
Public Member Functions inherited from dd4hep::Handle< TGeoSphere > |
| Handle ()=default |
| Default constructor. More...
|
|
| Handle (Handle< TGeoSphere > &&element)=default |
| Copy constructor. More...
|
|
| Handle (const Handle< TGeoSphere > &element)=default |
| Copy constructor. More...
|
|
| Handle (TGeoSphere *element) |
| Initializing constructor from pointer. More...
|
|
| Handle (Q *element) |
| Initializing constructor from unrelated pointer with type checking. More...
|
|
| Handle (const Handle< Q > &element) |
| Initializing constructor from unrelated handle with type checking. More...
|
|
Handle< TGeoSphere > & | operator= (Handle< TGeoSphere > &&element)=default |
| Assignment move operator. More...
|
|
Handle< TGeoSphere > & | operator= (const Handle< TGeoSphere > &element)=default |
| Assignment copy operator. More...
|
|
bool | operator== (const Handle< TGeoSphere > &element) const |
| Boolean operator == used for RB tree insertions. More...
|
|
bool | operator< (const Handle< TGeoSphere > &element) const |
| Boolean operator < used for RB tree insertions. More...
|
|
bool | operator> (const Handle< TGeoSphere > &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< TGeoSphere > & | clear () |
| Release the object held by the handle. More...
|
|
TGeoSphere * | operator-> () const |
| Access the held object using the -> operator. More...
|
|
| operator TGeoSphere & () const |
| Automatic type conversion to an object references. More...
|
|
TGeoSphere & | operator* () const |
| Access the held object using the * operator. More...
|
|
TGeoSphere * | ptr () const |
| Access to the held object. More...
|
|
Q * | _ptr () const |
| Access to an unrelated object type. More...
|
|
Q * | data () const |
| Access to an unrelated object type. More...
|
|
Q & | object () const |
| Access to an unrelated object type. More...
|
|
TGeoSphere * | 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...
|
|
const char * | name () const |
|
const char * | name () const |
|
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 | assign (_Segmentation *s, const std::string &n, const std::string &) |
|
void | assign (NamedObject *p, const std::string &n, const std::string &t) |
|
void | destroy () |
| Destroy the underlying object (be careful here: things are not reference counted)! More...
|
|
Class describing a sphere shape.
For any further documentation please see the following ROOT documentation:
- See also
- http://root.cern.ch/root/html/TGeoSphere.html
- Author
- M.Frank
- Version
- 1.0
Definition at line 1288 of file Shapes.h.