Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TGeoPara.h
Go to the documentation of this file.
1// @(#)root/geom:$Id$
2// Author: Andrei Gheata 31/01/02
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TGeoPara
13#define ROOT_TGeoPara
14
15#include "TGeoBBox.h"
16
17class TGeoPara : public TGeoBBox
18{
19protected :
20// data members
21 Double_t fX; // X half-length
22 Double_t fY; // Y half-length
23 Double_t fZ; // Z half-length
24 Double_t fAlpha; // angle w.r.t Y from the center of low Y to the high Y
25 Double_t fTheta; // polar angle of segment between low and hi Z surfaces
26 Double_t fPhi; // azimuthal angle of segment between low and hi Z surfaces
27 Double_t fTxy; // tangent of XY section angle
28 Double_t fTxz; // tangent of XZ section angle
29 Double_t fTyz; // tangent of XZ section angle
30
31 // methods
32 TGeoPara(const TGeoPara&) = delete;
33 TGeoPara& operator=(const TGeoPara&) = delete;
34
35public:
36 // constructors
37 TGeoPara();
38 TGeoPara(Double_t dx, Double_t dy, Double_t dz, Double_t alpha, Double_t theta, Double_t phi);
39 TGeoPara(const char *name, Double_t dx, Double_t dy, Double_t dz, Double_t alpha, Double_t theta, Double_t phi);
40 TGeoPara(Double_t *param);
41 // destructor
42 ~TGeoPara() override;
43 // methods
44 Double_t Capacity() const override;
45 void ComputeBBox() override;
46 void ComputeNormal(const Double_t *point, const Double_t *dir, Double_t *norm) override;
47 void ComputeNormal_v(const Double_t *points, const Double_t *dirs, Double_t *norms, Int_t vecsize) override;
48 Bool_t Contains(const Double_t *point) const override;
49 void Contains_v(const Double_t *points, Bool_t *inside, Int_t vecsize) const override;
50 Double_t DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact=1,
51 Double_t step=TGeoShape::Big(), Double_t *safe=nullptr) const override;
52 void DistFromInside_v(const Double_t *points, const Double_t *dirs, Double_t *dists, Int_t vecsize, Double_t *step) const override;
53 Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact=1,
54 Double_t step=TGeoShape::Big(), Double_t *safe=nullptr) const override;
55 void DistFromOutside_v(const Double_t *points, const Double_t *dirs, Double_t *dists, Int_t vecsize, Double_t *step) const override;
56 TGeoVolume *Divide(TGeoVolume *voldiv, const char *divname, Int_t iaxis, Int_t ndiv,
57 Double_t start, Double_t step) override;
58 Double_t GetAxisRange(Int_t iaxis, Double_t &xlo, Double_t &xhi) const override;
59 void GetBoundingCylinder(Double_t *param) const override;
60 Int_t GetByteCount() const override {return 48;}
61 Int_t GetFittingBox(const TGeoBBox *parambox, TGeoMatrix *mat, Double_t &dx, Double_t &dy, Double_t &dz) const override;
62 TGeoShape *GetMakeRuntimeShape(TGeoShape *mother, TGeoMatrix *mat) const override;
63 Int_t GetNmeshVertices() const override {return 8;}
64 Double_t GetX() const {return fX;}
65 Double_t GetY() const {return fY;}
66 Double_t GetZ() const {return fZ;}
67 Double_t GetAlpha() const {return fAlpha;}
68 Double_t GetTheta() const {return fTheta;}
69 Double_t GetPhi() const {return fPhi;}
70 Double_t GetTxy() const {return fTxy;}
71 Double_t GetTxz() const {return fTxz;}
72 Double_t GetTyz() const {return fTyz;}
73 void InspectShape() const override;
74 Bool_t IsCylType() const override {return kFALSE;}
75 Double_t Safety(const Double_t *point, Bool_t in=kTRUE) const override;
76 void Safety_v(const Double_t *points, const Bool_t *inside, Double_t *safe, Int_t vecsize) const override;
77 void SavePrimitive(std::ostream &out, Option_t *option = "") override;
78 void SetDimensions(Double_t *param) override;
79 void SetPoints(Double_t *points) const override;
80 void SetPoints(Float_t *points) const override;
81 void Sizeof3D() const override;
82
83 ClassDefOverride(TGeoPara, 1) // box primitive
84};
85
86#endif
bool Bool_t
Definition RtypesCore.h:63
int Int_t
Definition RtypesCore.h:45
const Bool_t kFALSE
Definition RtypesCore.h:101
float Float_t
Definition RtypesCore.h:57
double Double_t
Definition RtypesCore.h:59
const Bool_t kTRUE
Definition RtypesCore.h:100
const char Option_t
Definition RtypesCore.h:66
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
Option_t Option_t option
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t points
char name[80]
Definition TGX11.cxx:110
Box class.
Definition TGeoBBox.h:18
Geometrical transformation package.
Definition TGeoMatrix.h:41
Parallelepiped class.
Definition TGeoPara.h:18
void SetDimensions(Double_t *param) override
Set dimensions starting from an array.
Definition TGeoPara.cxx:605
Double_t GetZ() const
Definition TGeoPara.h:66
Double_t fTxy
Definition TGeoPara.h:27
Double_t fTyz
Definition TGeoPara.h:29
void ComputeNormal_v(const Double_t *points, const Double_t *dirs, Double_t *norms, Int_t vecsize) override
Compute the normal for an array o points so that norm.dot.dir is positive Input: Arrays of point coor...
Definition TGeoPara.cxx:681
Double_t GetPhi() const
Definition TGeoPara.h:69
Double_t fX
Definition TGeoPara.h:21
void ComputeNormal(const Double_t *point, const Double_t *dir, Double_t *norm) override
Compute normal to closest surface from POINT.
Definition TGeoPara.cxx:185
Double_t Safety(const Double_t *point, Bool_t in=kTRUE) const override
computes the closest distance from given point to this shape, according to option.
Definition TGeoPara.cxx:563
void Sizeof3D() const override
fill size of this 3-D object
Definition TGeoPara.cxx:661
TGeoShape * GetMakeRuntimeShape(TGeoShape *mother, TGeoMatrix *mat) const override
in case shape has some negative parameters, these has to be computed in order to fit the mother
Definition TGeoPara.cxx:526
Bool_t IsCylType() const override
Definition TGeoPara.h:74
void GetBoundingCylinder(Double_t *param) const override
Fill vector param[4] with the bounding cylinder parameters.
Definition TGeoPara.cxx:444
Double_t Capacity() const override
Computes capacity of the shape in [length^3].
Definition TGeoPara.cxx:164
TGeoVolume * Divide(TGeoVolume *voldiv, const char *divname, Int_t iaxis, Int_t ndiv, Double_t start, Double_t step) override
Divide this parallelepiped shape belonging to volume "voldiv" into ndiv equal volumes called divname,...
Definition TGeoPara.cxx:371
Double_t GetAxisRange(Int_t iaxis, Double_t &xlo, Double_t &xhi) const override
Get range of shape for a given axis.
Definition TGeoPara.cxx:415
Double_t GetAlpha() const
Definition TGeoPara.h:67
TGeoPara()
Default constructor.
Definition TGeoPara.cxx:72
Int_t GetByteCount() const override
Definition TGeoPara.h:60
void InspectShape() const override
print shape parameters
Definition TGeoPara.cxx:546
void Safety_v(const Double_t *points, const Bool_t *inside, Double_t *safe, Int_t vecsize) const override
Compute safe distance from each of the points in the input array.
Definition TGeoPara.cxx:707
Double_t fTheta
Definition TGeoPara.h:25
Double_t GetTxz() const
Definition TGeoPara.h:71
Int_t GetFittingBox(const TGeoBBox *parambox, TGeoMatrix *mat, Double_t &dx, Double_t &dy, Double_t &dz) const override
Fills real parameters of a positioned box inside this. Returns 0 if successful.
Definition TGeoPara.cxx:452
Double_t GetX() const
Definition TGeoPara.h:64
Double_t fTxz
Definition TGeoPara.h:28
void DistFromInside_v(const Double_t *points, const Double_t *dirs, Double_t *dists, Int_t vecsize, Double_t *step) const override
Compute distance from array of input points having directions specified by dirs. Store output in dist...
Definition TGeoPara.cxx:689
void SetPoints(Double_t *points) const override
Create PARA mesh points.
Definition TGeoPara.cxx:623
Double_t GetTyz() const
Definition TGeoPara.h:72
Double_t fAlpha
Definition TGeoPara.h:24
void Contains_v(const Double_t *points, Bool_t *inside, Int_t vecsize) const override
Check the inside status for each of the points in the array.
Definition TGeoPara.cxx:671
Double_t fZ
Definition TGeoPara.h:23
~TGeoPara() override
destructor
Definition TGeoPara.cxx:157
Double_t fY
Definition TGeoPara.h:22
Double_t GetTxy() const
Definition TGeoPara.h:70
Double_t DistFromOutside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=TGeoShape::Big(), Double_t *safe=nullptr) const override
compute distance from inside point to surface of the para
Definition TGeoPara.cxx:288
Double_t fPhi
Definition TGeoPara.h:26
void SavePrimitive(std::ostream &out, Option_t *option="") override
Save a primitive as a C++ statement(s) on output stream "out".
Definition TGeoPara.cxx:588
void DistFromOutside_v(const Double_t *points, const Double_t *dirs, Double_t *dists, Int_t vecsize, Double_t *step) const override
Compute distance from array of input points having directions specified by dirs. Store output in dist...
Definition TGeoPara.cxx:697
Bool_t Contains(const Double_t *point) const override
test if point is inside this sphere test Z range
Definition TGeoPara.cxx:229
Double_t GetY() const
Definition TGeoPara.h:65
Int_t GetNmeshVertices() const override
Definition TGeoPara.h:63
TGeoPara(const TGeoPara &)=delete
Double_t GetTheta() const
Definition TGeoPara.h:68
TGeoPara & operator=(const TGeoPara &)=delete
Double_t DistFromInside(const Double_t *point, const Double_t *dir, Int_t iact=1, Double_t step=TGeoShape::Big(), Double_t *safe=nullptr) const override
compute distance from inside point to surface of the para Boundary safe algorithm.
Definition TGeoPara.cxx:244
void ComputeBBox() override
compute bounding box
Definition TGeoPara.cxx:173
Base abstract class for all shapes.
Definition TGeoShape.h:26
static Double_t Big()
Definition TGeoShape.h:88
TGeoVolume, TGeoVolumeMulti, TGeoVolumeAssembly are the volume classes.
Definition TGeoVolume.h:49