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

Draw the mesh of a field-map component. More...

#include <ViewFEMesh.hh>

+ Inheritance diagram for Garfield::ViewFEMesh:

Public Member Functions

 ViewFEMesh ()
 Constructor.
 
 ~ViewFEMesh ()
 Destructor.
 
void SetComponent (ComponentFieldMap *cmp)
 Set the component from which to retrieve the mesh and field.
 
void SetPlane (const double fx, const double fy, const double fz, const double x0, const double y0, const double z0) override
 
void SetPlane (const double fx, const double fy, const double fz, const double x0, const double y0, const double z0, const double hx, const double hy, const double hz) override
 Set the projection plane specifying a hint for the in-plane x axis.
 
void SetXaxis (TGaxis *ax)
 
void SetYaxis (TGaxis *ay)
 
void SetXaxisTitle (const std::string &xtitle)
 
void SetYaxisTitle (const std::string &ytitle)
 
void EnableAxes ()
 
void DisableAxes ()
 
bool Plot (const bool twod=true)
 Plot method to be called by user.
 
void SetFillMesh (const bool f)
 Element fill switch; 2D only, set false for wireframe mesh.
 
void SetDrawViewRegion (bool do_draw)
 Display intersection of projection plane with viewing area.
 
bool GetDrawViewRegion (void) const
 
void SetColor (int matID, int colorID)
 
void SetFillColor (int matID, int colorID)
 
void SetViewDrift (ViewDrift *vd)
 Set the optional associated ViewDrift.
 
void SetFillMeshWithBorders ()
 Show filled mesh elements.
 
void CreateDefaultAxes ()
 Create a default set of custom-made axes.
 
void DisableMaterial (int materialID)
 Disable a material so that its mesh cells are not drawn.
 
- Public Member Functions inherited from Garfield::ViewBase
 ViewBase ()=delete
 Default constructor.
 
 ViewBase (const std::string &name)
 Constructor.
 
virtual ~ViewBase ()=default
 Destructor.
 
void SetCanvas (TPad *pad)
 Set the canvas to be painted on.
 
void SetCanvas ()
 Unset an external canvas.
 
TPad * GetCanvas ()
 Retrieve the canvas.
 
void SetArea (const double xmin, const double ymin, const double xmax, const double ymax)
 
virtual void SetArea (const double xmin, const double ymin, const double zmin, const double xmax, const double ymax, const double zmax)
 Set a bounding box (if applicable).
 
void SetArea ()
 
void Rotate (const double angle)
 Rotate the viewing plane (angle in radian).
 
void SetPlaneXY ()
 Set the viewing plane to x-y.
 
void SetPlaneXZ ()
 Set the viewing plane to x-z.
 
void SetPlaneYZ ()
 Set the viewing plane to y-z.
 
void SetPlaneZX ()
 Set the viewing plane to z-x.
 
void SetPlaneZY ()
 Set the viewing plane to z-y.
 
void EnableDebugging (const bool on=true)
 Switch on/off debugging output.
 

Additional Inherited Members

- Static Public Member Functions inherited from Garfield::ViewBase
static std::string FindUnusedFunctionName (const std::string &s)
 Find an unused function name.
 
static std::string FindUnusedHistogramName (const std::string &s)
 Find an unused histogram name.
 
static std::string FindUnusedCanvasName (const std::string &s)
 Find an unused canvas name.
 
- Protected Member Functions inherited from Garfield::ViewBase
void UpdateProjectionMatrix ()
 
template<typename T>
void ToPlane (const T x, const T y, const T z, T &xp, T &yp) const
 
template<typename T>
bool InBox (const std::array< T, 3 > &x) const
 
void Clip (const std::array< float, 3 > &x0, const std::array< float, 3 > &x1, std::array< float, 3 > &xc) const
 
void DrawLine (const std::vector< std::array< float, 3 > > &xl, const short col, const short lw)
 
std::string LabelX ()
 
std::string LabelY ()
 
std::string PlaneDescription ()
 
bool PlotLimits (Sensor *sensor, double &xmin, double &ymin, double &xmax, double &ymax) const
 
bool PlotLimits (Component *cmp, double &xmin, double &ymin, double &xmax, double &ymax) const
 
bool PlotLimitsFromUserBox (double &xmin, double &ymin, double &xmax, double &ymax) const
 
bool PlotLimits (std::array< double, 3 > &bbmin, std::array< double, 3 > &bbmax, double &xmin, double &ymin, double &xmax, double &ymax) const
 
- Static Protected Member Functions inherited from Garfield::ViewBase
static bool RangeSet (TVirtualPad *)
 
static void SetRange (TVirtualPad *pad, const double x0, const double y0, const double x1, const double y1)
 
- Protected Attributes inherited from Garfield::ViewBase
std::string m_className = "ViewBase"
 
bool m_debug = false
 
bool m_userPlotLimits = false
 
double m_xMinPlot = -1.
 
double m_xMaxPlot = 1.
 
double m_yMinPlot = -1.
 
double m_yMaxPlot = 1.
 
bool m_userBox = false
 
double m_xMinBox = -1.
 
double m_xMaxBox = 1.
 
double m_yMinBox = -1.
 
double m_yMaxBox = 1.
 
double m_zMinBox = -1.
 
double m_zMaxBox = 1.
 
std::array< std::array< double, 3 >, 3 > m_proj
 
std::array< double, 4 > m_plane {{0, 0, 1, 0}}
 
std::array< std::array< double, 3 >, 3 > m_prmat
 

Detailed Description

Draw the mesh of a field-map component.

Definition at line 22 of file ViewFEMesh.hh.

Constructor & Destructor Documentation

◆ ViewFEMesh()

Garfield::ViewFEMesh::ViewFEMesh ( )

Constructor.

Definition at line 22 of file ViewFEMesh.cc.

22: ViewBase("ViewFEMesh") {}
ViewBase()=delete
Default constructor.

◆ ~ViewFEMesh()

Garfield::ViewFEMesh::~ViewFEMesh ( )

Destructor.

Definition at line 24 of file ViewFEMesh.cc.

24 {
25 Reset();
26}

Member Function Documentation

◆ CreateDefaultAxes()

void Garfield::ViewFEMesh::CreateDefaultAxes ( )

Create a default set of custom-made axes.

Definition at line 237 of file ViewFEMesh.cc.

237 {
238 // Create a new x and y axis.
239 if (!GetPlotLimits()) {
240 std::cerr << m_className << "::CreateDefaultAxes:\n"
241 << " Cannot determine the axis limits.\n";
242 return;
243 }
244 const double dx = std::abs(m_xMaxPlot - m_xMinPlot) * 0.1;
245 const double dy = std::abs(m_yMaxPlot - m_yMinPlot) * 0.1;
246 const double x0 = m_xMinPlot + dx;
247 const double y0 = m_yMinPlot + dy;
248 const double x1 = m_xMaxPlot - dx;
249 const double y1 = m_yMaxPlot - dy;
250 m_xaxis = new TGaxis(x0, y0, x1, y0, x0, x1, 2405, "x");
251 m_yaxis = new TGaxis(x0, y0, x0, y1, y0, y1, 2405, "y");
252
253 // Label sizes
254 m_xaxis->SetLabelSize(0.025);
255 m_yaxis->SetLabelSize(0.025);
256
257 // Titles
258 m_xaxis->SetTitleSize(0.03);
259 m_xaxis->SetTitle(LabelX().c_str());
260 m_yaxis->SetTitleSize(0.03);
261 m_yaxis->SetTitle(LabelY().c_str());
262}
std::string LabelY()
Definition ViewBase.cc:510
std::string LabelX()
Definition ViewBase.cc:447
std::string m_className
Definition ViewBase.hh:82

◆ DisableAxes()

void Garfield::ViewFEMesh::DisableAxes ( )
inline

Definition at line 44 of file ViewFEMesh.hh.

44{ m_drawAxes = false; }

◆ DisableMaterial()

void Garfield::ViewFEMesh::DisableMaterial ( int materialID)
inline

Disable a material so that its mesh cells are not drawn.

Definition at line 76 of file ViewFEMesh.hh.

76 {
77 m_disabledMaterial[materialID] = true;
78 }

◆ EnableAxes()

void Garfield::ViewFEMesh::EnableAxes ( )
inline

Definition at line 43 of file ViewFEMesh.hh.

43{ m_drawAxes = true; }

Referenced by main().

◆ GetDrawViewRegion()

bool Garfield::ViewFEMesh::GetDrawViewRegion ( void ) const
inline

Definition at line 54 of file ViewFEMesh.hh.

54{ return m_drawViewRegion; }

◆ Plot()

bool Garfield::ViewFEMesh::Plot ( const bool twod = true)

Plot method to be called by user.

Definition at line 60 of file ViewFEMesh.cc.

60 {
61 if (!m_cmp) {
62 std::cerr << m_className << "::Plot: Component is not defined.\n";
63 return false;
64 }
65
66 double pmin = 0., pmax = 0.;
67 if (!m_cmp->GetVoltageRange(pmin, pmax)) {
68 std::cerr << m_className << "::Plot: Component is not ready.\n";
69 return false;
70 }
71
72 auto pad = GetCanvas();
73 pad->cd();
74
75 if (!twod) {
76 if (!m_cmp->m_is3d) {
77 std::cerr << m_className << "::Plot:\n"
78 << " Cannot plot 2D mesh elements in 3D.\n";
79 return false;
80 }
81 DrawElements3d();
82 DrawDriftLines3d();
83 return true;
84 }
85
86 if (!GetPlotLimits()) return false;
87
88 if (!RangeSet(pad)) {
90 }
91
92 if (m_drawAxes) {
93 if (!m_xaxis && !m_yaxis) {
94 // Draw default axes.
95 auto frame = pad->DrawFrame(m_xMinPlot, m_yMinPlot,
97 if (m_xaxisTitle.empty()) {
98 frame->GetXaxis()->SetTitle(LabelX().c_str());
99 } else {
100 frame->GetXaxis()->SetTitle(m_xaxisTitle.c_str());
101 }
102 if (m_yaxisTitle.empty()) {
103 frame->GetYaxis()->SetTitle(LabelY().c_str());
104 } else {
105 frame->GetYaxis()->SetTitle(m_yaxisTitle.c_str());
106 }
107 } else {
108 // Draw custom axes.
109 if (m_xaxis) m_xaxis->Draw();
110 if (m_yaxis) m_yaxis->Draw();
111 }
112 }
113
114 // Plot the mesh elements.
115 auto cst = dynamic_cast<ComponentCST*>(m_cmp);
116 if (cst) {
117 std::cout << m_className << "::Plot: CST component. Calling DrawCST.\n";
118 DrawCST(cst);
119 } else {
120 DrawElements2d();
121 }
122
123 DrawDriftLines2d();
124
125 if (m_drawViewRegion && !m_viewRegionX.empty()) {
126 TPolyLine poly;
127 poly.SetLineColor(kSpring + 4);
128 poly.SetLineWidth(3);
129 std::vector<double> xv = m_viewRegionX;
130 std::vector<double> yv = m_viewRegionY;
131 // Close the polygon.
132 xv.push_back(m_viewRegionX[0]);
133 yv.push_back(m_viewRegionY[0]);
134 poly.DrawPolyLine(xv.size(), xv.data(), yv.data(), "same");
135 }
136 gPad->Update();
137 // Draw axes again so they are on top
138 gPad->RedrawAxis("g");
139 return true;
140}
static void SetRange(TVirtualPad *pad, const double x0, const double y0, const double x1, const double y1)
Definition ViewBase.cc:93
TPad * GetCanvas()
Retrieve the canvas.
Definition ViewBase.cc:74
static bool RangeSet(TVirtualPad *)
Definition ViewBase.cc:83

Referenced by main().

◆ SetColor()

void Garfield::ViewFEMesh::SetColor ( int matID,
int colorID )
inline

Associate a color with each element material map ID; Uses ROOT color numberings

Definition at line 58 of file ViewFEMesh.hh.

58{ m_colorMap[matID] = colorID; }

Referenced by main().

◆ SetComponent()

void Garfield::ViewFEMesh::SetComponent ( ComponentFieldMap * cmp)

Set the component from which to retrieve the mesh and field.

Definition at line 49 of file ViewFEMesh.cc.

49 {
50 if (!cmp) {
51 std::cerr << m_className << "::SetComponent: Null pointer.\n";
52 return;
53 }
54
55 m_cmp = cmp;
56}

Referenced by main().

◆ SetDrawViewRegion()

void Garfield::ViewFEMesh::SetDrawViewRegion ( bool do_draw)
inline

Display intersection of projection plane with viewing area.

Definition at line 53 of file ViewFEMesh.hh.

53{ m_drawViewRegion = do_draw; }

◆ SetFillColor()

void Garfield::ViewFEMesh::SetFillColor ( int matID,
int colorID )
inline

Definition at line 59 of file ViewFEMesh.hh.

59 {
60 m_colorMap_fill[matID] = colorID;
61 }

◆ SetFillMesh()

void Garfield::ViewFEMesh::SetFillMesh ( const bool f)
inline

Element fill switch; 2D only, set false for wireframe mesh.

Definition at line 50 of file ViewFEMesh.hh.

50{ m_fillMesh = f; }

Referenced by main().

◆ SetFillMeshWithBorders()

void Garfield::ViewFEMesh::SetFillMeshWithBorders ( )
inline

Show filled mesh elements.

Definition at line 67 of file ViewFEMesh.hh.

67 {
68 m_plotMeshBorders = true;
69 m_fillMesh = true;
70 }

◆ SetPlane() [1/2]

void Garfield::ViewFEMesh::SetPlane ( const double fx,
const double fy,
const double fz,
const double x0,
const double y0,
const double z0 )
overridevirtual

Set the projection (viewing plane), if applicable.

Parameters
fx,fy,fznormal vector
x0,y0,z0in-plane point

Reimplemented from Garfield::ViewBase.

Definition at line 215 of file ViewFEMesh.cc.

216 {
217 if (fy * fy + fz * fz > 0) {
218 SetPlane(fx, fy, fz, x0, y0, z0, 1, 0, 0);
219 } else {
220 SetPlane(fx, fy, fz, x0, y0, z0, 0, 1, 0);
221 }
222}
void SetPlane(const double fx, const double fy, const double fz, const double x0, const double y0, const double z0) override

Referenced by main(), and SetPlane().

◆ SetPlane() [2/2]

void Garfield::ViewFEMesh::SetPlane ( const double fx,
const double fy,
const double fz,
const double x0,
const double y0,
const double z0,
const double hx,
const double hy,
const double hz )
overridevirtual

Set the projection plane specifying a hint for the in-plane x axis.

Reimplemented from Garfield::ViewBase.

Definition at line 224 of file ViewFEMesh.cc.

226 {
227 ViewBase::SetPlane(fx, fy, fz, x0, y0, z0, hx, hy, hz);
228}
virtual void SetPlane(const double fx, const double fy, const double fz, const double x0, const double y0, const double z0)
Definition ViewBase.cc:142

◆ SetViewDrift()

void Garfield::ViewFEMesh::SetViewDrift ( ViewDrift * vd)
inline

Set the optional associated ViewDrift.

Definition at line 64 of file ViewFEMesh.hh.

64{ m_viewDrift = vd; }

Referenced by main().

◆ SetXaxis()

void Garfield::ViewFEMesh::SetXaxis ( TGaxis * ax)

Definition at line 231 of file ViewFEMesh.cc.

231{ m_xaxis = ax; }

◆ SetXaxisTitle()

void Garfield::ViewFEMesh::SetXaxisTitle ( const std::string & xtitle)
inline

Definition at line 41 of file ViewFEMesh.hh.

41{ m_xaxisTitle = xtitle; }

Referenced by main().

◆ SetYaxis()

void Garfield::ViewFEMesh::SetYaxis ( TGaxis * ay)

Definition at line 234 of file ViewFEMesh.cc.

234{ m_yaxis = ay; }

◆ SetYaxisTitle()

void Garfield::ViewFEMesh::SetYaxisTitle ( const std::string & ytitle)
inline

Definition at line 42 of file ViewFEMesh.hh.

42{ m_yaxisTitle = ytitle; }

Referenced by main().


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