Garfield++ 5.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
TGeoTet Class Reference

#include <TGeoTet.hh>

+ Inheritance diagram for TGeoTet:

Public Member Functions

 TGeoTet ()
 
 TGeoTet (const char *name, const std::array< std::array< double, 3 >, 4 > &vertices)
 Constructor.
 
virtual ~TGeoTet ()
 Destructor.
 
void ComputeBBox () override
 
int DistancetoPrimitive (int, int) override
 
const TBuffer3D & GetBuffer3D (int reqSections, bool localFrame) const override
 Fills a static 3D buffer and returns a reference.
 
void GetMeshNumbers (int &nvert, int &nsegs, int &npols) const override
 
int GetNmeshVertices () const override
 
void InspectShape () const override
 
TBuffer3D * MakeBuffer3D () const override
 
void Print (Option_t *option="") const override
 
void SavePrimitive (std::ostream &, Option_t *) override
 
void SetPoints (double *points) const override
 
void SetPoints (float *points) const override
 
void SetSegsAndPols (TBuffer3D &buff) const override
 
void Sizeof3D () const override
 

Detailed Description

Definition at line 8 of file TGeoTet.hh.

Constructor & Destructor Documentation

◆ TGeoTet() [1/2]

TGeoTet::TGeoTet ( )
inline

Definition at line 11 of file TGeoTet.hh.

11{}

◆ TGeoTet() [2/2]

TGeoTet::TGeoTet ( const char * name,
const std::array< std::array< double, 3 >, 4 > & vertices )

Constructor.

Definition at line 38 of file TGeoTet.cc.

40 : TGeoBBox(name, 0, 0, 0) {
41 fVertices = vertices;
42
43 Vec u;
44 Vec v;
45 Vec w;
46 for (size_t i = 0; i < 3; ++i) {
47 u[i] = fVertices[1][i] - fVertices[0][i];
48 v[i] = fVertices[2][i] - fVertices[0][i];
49 w[i] = fVertices[3][i] - fVertices[0][i];
50 }
51 Vec x = Cross(v, w);
52 double det = Dot(x, u);
53 if (det < 0.) std::swap(fVertices[0], fVertices[1]);
54}
std::array< double, 3 > Vec
Definition TGeoTet.cc:14

◆ ~TGeoTet()

virtual TGeoTet::~TGeoTet ( )
inlinevirtual

Destructor.

Definition at line 16 of file TGeoTet.hh.

16{}

Member Function Documentation

◆ ComputeBBox()

void TGeoTet::ComputeBBox ( )
override

Definition at line 56 of file TGeoTet.cc.

56 {
57 const double kBig = TGeoShape::Big();
58 double vmin[3] = {kBig, kBig, kBig};
59 double vmax[3] = {-kBig, -kBig, -kBig};
60 for (size_t i = 0; i < 4; ++i) {
61 for (size_t j = 0; j < 3; ++j) {
62 vmin[j] = std::min(vmin[j], fVertices[i][j]);
63 vmax[j] = std::max(vmax[j], fVertices[i][j]);
64 }
65 }
66 fDX = 0.5 * (vmax[0] - vmin[0]);
67 fDY = 0.5 * (vmax[1] - vmin[1]);
68 fDZ = 0.5 * (vmax[2] - vmin[2]);
69 for (size_t i = 0; i < 3; ++i) {
70 fOrigin[i] = 0.5 * (vmax[i] + vmin[i]);
71 }
72}

◆ DistancetoPrimitive()

int TGeoTet::DistancetoPrimitive ( int ,
int  )
inlineoverride

Definition at line 19 of file TGeoTet.hh.

19{ return 99999; }

◆ GetBuffer3D()

const TBuffer3D & TGeoTet::GetBuffer3D ( int reqSections,
bool localFrame ) const
override

Fills a static 3D buffer and returns a reference.

Definition at line 178 of file TGeoTet.cc.

178 {
179 static TBuffer3D buffer(TBuffer3DTypes::kGeneric);
180
181 FillBuffer3D(buffer, reqSections, localFrame);
182
183 constexpr int nv = 4;
184 // constexpr int ns = 6;
185 constexpr int ns = 12;
186 constexpr int np = 4;
187 if (reqSections & TBuffer3D::kRawSizes) {
188 if (buffer.SetRawSizes(nv, 3 * nv, ns, 3 * ns, np, 5 * np)) {
189 buffer.SetSectionsValid(TBuffer3D::kRawSizes);
190 }
191 }
192 if ((reqSections & TBuffer3D::kRaw) && buffer.SectionsValid(TBuffer3D::kRawSizes)) {
193 SetPoints(buffer.fPnts);
194 if (!buffer.fLocalFrame) {
195 TransformPoints(buffer.fPnts, buffer.NbPnts());
196 }
197 SetSegsAndPols(buffer);
198 buffer.SetSectionsValid(TBuffer3D::kRaw);
199 }
200 return buffer;
201}
void SetSegsAndPols(TBuffer3D &buff) const override
Definition TGeoTet.cc:92
void SetPoints(double *points) const override
Definition TGeoTet.cc:159

◆ GetMeshNumbers()

void TGeoTet::GetMeshNumbers ( int & nvert,
int & nsegs,
int & npols ) const
inlineoverride

Definition at line 21 of file TGeoTet.hh.

21 {
22 nvert = 4;
23 nsegs = 12;
24 npols = 4;
25 }

◆ GetNmeshVertices()

int TGeoTet::GetNmeshVertices ( ) const
inlineoverride

Definition at line 26 of file TGeoTet.hh.

26{ return 4; }

◆ InspectShape()

void TGeoTet::InspectShape ( ) const
inlineoverride

Definition at line 27 of file TGeoTet.hh.

27{}

◆ MakeBuffer3D()

TBuffer3D * TGeoTet::MakeBuffer3D ( ) const
override

Definition at line 74 of file TGeoTet.cc.

74 {
75 // Number of vertices.
76 constexpr int nv = 4;
77 // Number of segments.
78 // constexpr int ns = 6;
79 constexpr int ns = 12;
80 // Number of polygons.
81 constexpr int np = 4;
82 auto buff = new TBuffer3D(TBuffer3DTypes::kGeneric, nv, 3 * nv, ns, 3 * ns, np, 5 * np);
83 SetPoints(buff->fPnts);
84 SetSegsAndPols(*buff);
85 return buff;
86}

◆ Print()

void TGeoTet::Print ( Option_t * option = "") const
override

Definition at line 88 of file TGeoTet.cc.

88 {
89 std::cout << "=== Tetrahedron " << GetName() << "\n";
90}

◆ SavePrimitive()

void TGeoTet::SavePrimitive ( std::ostream & ,
Option_t *  )
inlineoverride

Definition at line 30 of file TGeoTet.hh.

30{}

◆ SetPoints() [1/2]

void TGeoTet::SetPoints ( double * points) const
override

Definition at line 159 of file TGeoTet.cc.

159 {
160 size_t ind = 0;
161 for (const auto& vertex : fVertices) {
162 points[ind++] = vertex[0];
163 points[ind++] = vertex[1];
164 points[ind++] = vertex[2];
165 }
166}

Referenced by GetBuffer3D(), and MakeBuffer3D().

◆ SetPoints() [2/2]

void TGeoTet::SetPoints ( float * points) const
override

Definition at line 168 of file TGeoTet.cc.

168 {
169 size_t ind = 0;
170 for (const auto& vertex : fVertices) {
171 points[ind++] = vertex[0];
172 points[ind++] = vertex[1];
173 points[ind++] = vertex[2];
174 }
175}

◆ SetSegsAndPols()

void TGeoTet::SetSegsAndPols ( TBuffer3D & buff) const
override

Definition at line 92 of file TGeoTet.cc.

92 {
93 const int c = GetBasicColor();
94
95 auto v01 = Dir(fVertices[0], fVertices[1]);
96 auto v02 = Dir(fVertices[0], fVertices[2]);
97 auto v03 = Dir(fVertices[0], fVertices[3]);
98
99 auto v12 = Dir(fVertices[1], fVertices[2]);
100 auto v13 = Dir(fVertices[1], fVertices[3]);
101 auto v10 = Dir(fVertices[1], fVertices[0]);
102
103 auto v23 = Dir(fVertices[2], fVertices[3]);
104 auto v20 = Dir(fVertices[2], fVertices[0]);
105 auto v21 = Dir(fVertices[2], fVertices[1]);
106
107 auto v30 = Dir(fVertices[3], fVertices[0]);
108 auto v31 = Dir(fVertices[3], fVertices[1]);
109 auto v32 = Dir(fVertices[3], fVertices[2]);
110
111 std::vector<std::array<int, 3> > faces;
112 if (Dot(Cross(v01, v02), v03) > 0) {
113 faces.push_back({1, 0, 2});
114 } else {
115 faces.push_back({0, 1, 2});
116 }
117
118 if (Dot(Cross(v12, v13), v10) > 0) {
119 faces.push_back({2, 1, 3});
120 } else {
121 faces.push_back({1, 2, 3});
122 }
123
124 if (Dot(Cross(v23, v20), v21) > 0) {
125 faces.push_back({3, 2, 0});
126 } else {
127 faces.push_back({2, 3, 0});
128 }
129
130 if (Dot(Cross(v30, v31), v32) > 0) {
131 faces.push_back({0, 3, 1});
132 } else {
133 faces.push_back({3, 0, 1});
134 }
135
136 size_t ind = 0;
137 for (const auto& face : faces) {
138 buff.fSegs[ind++] = c;
139 buff.fSegs[ind++] = face[0];
140 buff.fSegs[ind++] = face[1];
141 buff.fSegs[ind++] = c;
142 buff.fSegs[ind++] = face[1];
143 buff.fSegs[ind++] = face[2];
144 buff.fSegs[ind++] = c;
145 buff.fSegs[ind++] = face[2];
146 buff.fSegs[ind++] = face[0];
147 }
148
149 ind = 0;
150 for (size_t i = 0; i < 4; ++i) {
151 buff.fPols[ind++] = c;
152 buff.fPols[ind++] = 3;
153 buff.fPols[ind++] = 3 * i;
154 buff.fPols[ind++] = 3 * i + 1;
155 buff.fPols[ind++] = 3 * i + 2;
156 }
157}

Referenced by GetBuffer3D(), and MakeBuffer3D().

◆ Sizeof3D()

void TGeoTet::Sizeof3D ( ) const
inlineoverride

Definition at line 34 of file TGeoTet.hh.

34{}

The documentation for this class was generated from the following files: