Garfield++ 5.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
|
Base class for visualization classes. More...
#include <ViewBase.hh>
Public Member Functions | |
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 () |
virtual void | SetPlane (const double fx, const double fy, const double fz, const double x0, const double y0, const double z0) |
virtual 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) |
Set the projection plane specifying a hint for the in-plane x axis. | |
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. | |
Static Public Member Functions | |
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 | |
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 | |
static bool | RangeSet (TVirtualPad *) |
static void | SetRange (TVirtualPad *pad, const double x0, const double y0, const double x1, const double y1) |
Protected Attributes | |
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 |
Base class for visualization classes.
Definition at line 18 of file ViewBase.hh.
|
delete |
Default constructor.
Referenced by Garfield::ViewCell::ViewCell(), Garfield::ViewDrift::ViewDrift(), Garfield::ViewFEMesh::ViewFEMesh(), Garfield::ViewField::ViewField(), Garfield::ViewGeometry::ViewGeometry(), Garfield::ViewIsochrons::ViewIsochrons(), Garfield::ViewMedium::ViewMedium(), and Garfield::ViewSignal::ViewSignal().
Garfield::ViewBase::ViewBase | ( | const std::string & | name | ) |
Constructor.
Definition at line 68 of file ViewBase.cc.
|
virtualdefault |
Destructor.
|
protected |
Definition at line 374 of file ViewBase.cc.
Referenced by DrawLine().
|
protected |
Definition at line 398 of file ViewBase.cc.
Referenced by Garfield::ViewDrift::Plot2d(), and Garfield::ViewField::PlotFieldLines().
|
inline |
|
static |
Find an unused canvas name.
Definition at line 337 of file ViewBase.cc.
Referenced by GetCanvas(), Garfield::ComponentAnalyticField::MultipoleMoments(), Garfield::MediumMagboltz::PlotElectronCrossSections(), Garfield::TrackSrim::PlotEnergyLoss(), Garfield::TrackSrim::PlotRange(), Garfield::TrackSrim::PlotStraggling(), and Garfield::Sensor::PlotTransferFunction().
|
static |
Find an unused function name.
Definition at line 317 of file ViewBase.cc.
|
static |
Find an unused histogram name.
Definition at line 327 of file ViewBase.cc.
Referenced by Garfield::ViewSignal::PlotSignal().
TPad * Garfield::ViewBase::GetCanvas | ( | ) |
Retrieve the canvas.
Definition at line 74 of file ViewBase.cc.
Referenced by Garfield::ViewFEMesh::Plot(), Garfield::ViewDrift::Plot2d(), Garfield::ViewGeometry::Plot2d(), Garfield::ViewDrift::Plot3d(), Garfield::ViewGeometry::Plot3d(), Garfield::ViewField::PlotFieldLines(), Garfield::ViewIsochrons::PlotIsochrons(), Garfield::ViewGeometry::PlotPanels(), and Garfield::ViewSignal::PlotSignal().
|
inlineprotected |
Definition at line 119 of file ViewBase.hh.
Referenced by Clip(), and DrawLine().
|
protected |
Definition at line 447 of file ViewBase.cc.
Referenced by Garfield::ViewFEMesh::CreateDefaultAxes(), Garfield::ViewFEMesh::Plot(), Garfield::ViewDrift::Plot2d(), Garfield::ViewField::PlotFieldLines(), and Garfield::ViewIsochrons::PlotIsochrons().
|
protected |
Definition at line 510 of file ViewBase.cc.
Referenced by Garfield::ViewFEMesh::CreateDefaultAxes(), Garfield::ViewFEMesh::Plot(), Garfield::ViewDrift::Plot2d(), Garfield::ViewField::PlotFieldLines(), and Garfield::ViewIsochrons::PlotIsochrons().
|
protected |
Definition at line 572 of file ViewBase.cc.
|
protected |
Definition at line 653 of file ViewBase.cc.
|
protected |
Definition at line 635 of file ViewBase.cc.
Referenced by Garfield::ViewGeometry::Plot2d(), PlotLimits(), PlotLimits(), and PlotLimitsFromUserBox().
|
protected |
Definition at line 698 of file ViewBase.cc.
|
protected |
Definition at line 690 of file ViewBase.cc.
Referenced by Garfield::ViewGeometry::Plot2d().
|
staticprotected |
Definition at line 83 of file ViewBase.cc.
Referenced by Garfield::ViewFEMesh::Plot(), Garfield::ViewDrift::Plot2d(), Garfield::ViewGeometry::Plot2d(), Garfield::ViewField::PlotFieldLines(), and Garfield::ViewSignal::PlotSignal().
void Garfield::ViewBase::Rotate | ( | const double | angle | ) |
Rotate the viewing plane (angle in radian).
Definition at line 270 of file ViewBase.cc.
|
inline |
Use default x- and y-axis limits (based on the bounding box of the sensor/component, if applicable).
Definition at line 43 of file ViewBase.hh.
void Garfield::ViewBase::SetArea | ( | const double | xmin, |
const double | ymin, | ||
const double | xmax, | ||
const double | ymax ) |
Set the x- and y-axis limits (in local coordinates of the current viewing plane, if applicable).
Definition at line 109 of file ViewBase.cc.
Referenced by main().
|
virtual |
Set a bounding box (if applicable).
Definition at line 125 of file ViewBase.cc.
|
inline |
|
inline |
Set the canvas to be painted on.
Definition at line 28 of file ViewBase.hh.
Referenced by main(), Garfield::Medium::PlotAlphaEta(), Garfield::Medium::PlotAttachment(), Garfield::ComponentAnalyticField::PlotCell(), Garfield::Medium::PlotDiffusion(), Garfield::Sensor::PlotSignal(), Garfield::Medium::PlotTownsend(), and Garfield::Medium::PlotVelocity().
|
virtual |
Set the projection (viewing plane), if applicable.
fx,fy,fz | normal vector |
x0,y0,z0 | in-plane point |
Reimplemented in Garfield::ViewFEMesh.
Definition at line 142 of file ViewBase.cc.
Referenced by main(), and Garfield::ViewFEMesh::SetPlane().
|
virtual |
Set the projection plane specifying a hint for the in-plane x axis.
Reimplemented in Garfield::ViewFEMesh.
Definition at line 182 of file ViewBase.cc.
void Garfield::ViewBase::SetPlaneXY | ( | ) |
Set the viewing plane to x-y.
Definition at line 287 of file ViewBase.cc.
Referenced by SetPlane(), and UpdateProjectionMatrix().
void Garfield::ViewBase::SetPlaneXZ | ( | ) |
Set the viewing plane to x-z.
Definition at line 293 of file ViewBase.cc.
Referenced by main().
void Garfield::ViewBase::SetPlaneYZ | ( | ) |
Set the viewing plane to y-z.
Definition at line 299 of file ViewBase.cc.
void Garfield::ViewBase::SetPlaneZX | ( | ) |
Set the viewing plane to z-x.
Definition at line 305 of file ViewBase.cc.
void Garfield::ViewBase::SetPlaneZY | ( | ) |
Set the viewing plane to z-y.
Definition at line 311 of file ViewBase.cc.
|
staticprotected |
Definition at line 93 of file ViewBase.cc.
Referenced by Garfield::ViewFEMesh::Plot(), Garfield::ViewDrift::Plot2d(), and Garfield::ViewField::PlotFieldLines().
|
inlineprotected |
Definition at line 113 of file ViewBase.hh.
Referenced by DrawLine(), Garfield::ViewDrift::Plot2d(), and Garfield::ViewGeometry::Plot2d().
|
protected |
Definition at line 347 of file ViewBase.cc.
Referenced by Rotate(), SetPlane(), SetPlaneXZ(), SetPlaneYZ(), SetPlaneZX(), and SetPlaneZY().
|
protected |
Definition at line 82 of file ViewBase.hh.
Referenced by Garfield::ViewDrift::AddDriftLinePoint(), Garfield::ViewDrift::AddTrackPoint(), Garfield::ViewFEMesh::CreateDefaultAxes(), Garfield::ViewField::EqualFluxIntervals(), Garfield::ViewField::FixedFluxIntervals(), GetCanvas(), Garfield::ViewFEMesh::Plot(), Garfield::ViewCell::Plot2d(), Garfield::ViewDrift::Plot2d(), Garfield::ViewGeometry::Plot2d(), Garfield::ViewCell::Plot3d(), Garfield::ViewDrift::Plot3d(), Garfield::ViewGeometry::Plot3d(), Garfield::ViewField::PlotFieldLines(), Garfield::ViewIsochrons::PlotIsochrons(), PlotLimits(), PlotLimits(), Garfield::ViewGeometry::PlotPanels(), Garfield::ViewSignal::PlotSignal(), SetArea(), SetArea(), Garfield::ViewIsochrons::SetAspectRatioSwitch(), Garfield::ViewDrift::SetClusterMarkerSize(), Garfield::ViewDrift::SetCollisionMarkerSize(), Garfield::ViewCell::SetComponent(), Garfield::ViewCell::SetComponent(), Garfield::ViewFEMesh::SetComponent(), Garfield::ViewField::SetComponent(), Garfield::ViewIsochrons::SetComponent(), Garfield::ViewIsochrons::SetConnectionThreshold(), Garfield::ViewDrift::SetDriftLinePoint(), Garfield::ViewGeometry::SetGeometry(), Garfield::ViewIsochrons::SetLoopThreshold(), Garfield::ViewMedium::SetMedium(), SetPlane(), SetPlane(), Garfield::ViewMedium::SetRangeA(), Garfield::ViewMedium::SetRangeB(), Garfield::ViewMedium::SetRangeE(), Garfield::ViewSignal::SetRangeX(), Garfield::ViewMedium::SetRangeY(), Garfield::ViewSignal::SetRangeY(), Garfield::ViewField::SetSensor(), Garfield::ViewIsochrons::SetSensor(), Garfield::ViewSignal::SetSensor(), Garfield::ViewDrift::SetTrackPoint(), UpdateProjectionMatrix(), and ViewBase().
|
protected |
Definition at line 85 of file ViewBase.hh.
Referenced by EnableDebugging(), Garfield::ViewField::EqualFluxIntervals(), Garfield::ViewField::FixedFluxIntervals(), Garfield::ViewIsochrons::PlotIsochrons(), and SetPlane().
|
protected |
Definition at line 103 of file ViewBase.hh.
Referenced by Garfield::ViewField::EqualFluxIntervals(), Garfield::ViewField::FixedFluxIntervals(), PlaneDescription(), Garfield::ViewGeometry::Plot2d(), Garfield::ViewIsochrons::PlotIsochrons(), SetPlane(), SetPlane(), SetPlaneXY(), SetPlaneXZ(), SetPlaneYZ(), SetPlaneZX(), SetPlaneZY(), and UpdateProjectionMatrix().
|
protected |
Definition at line 105 of file ViewBase.hh.
Referenced by SetPlane(), SetPlaneXY(), ToPlane(), and UpdateProjectionMatrix().
|
protected |
Definition at line 100 of file ViewBase.hh.
Referenced by LabelX(), LabelY(), Garfield::ViewGeometry::Plot2d(), Garfield::ViewIsochrons::PlotIsochrons(), PlotLimits(), Rotate(), SetPlane(), SetPlane(), SetPlaneXY(), SetPlaneXZ(), SetPlaneYZ(), SetPlaneZX(), SetPlaneZY(), and UpdateProjectionMatrix().
|
protected |
Definition at line 93 of file ViewBase.hh.
Referenced by InBox(), Garfield::ViewGeometry::Plot2d(), Garfield::ViewField::PlotFieldLines(), SetArea(), and SetArea().
|
protected |
Definition at line 88 of file ViewBase.hh.
Referenced by Garfield::ViewGeometry::Plot2d(), SetArea(), and SetArea().
|
protected |
Definition at line 94 of file ViewBase.hh.
Referenced by Clip(), InBox(), Garfield::ViewDrift::Plot3d(), Garfield::ViewField::PlotFieldLines(), PlotLimitsFromUserBox(), and SetArea().
|
protected |
Definition at line 89 of file ViewBase.hh.
Referenced by Garfield::ViewFEMesh::CreateDefaultAxes(), Garfield::ViewFEMesh::Plot(), Garfield::ViewDrift::Plot2d(), Garfield::ViewGeometry::Plot2d(), Garfield::ViewField::PlotFieldLines(), Garfield::ViewIsochrons::PlotIsochrons(), and SetArea().
|
protected |
Definition at line 94 of file ViewBase.hh.
Referenced by Clip(), InBox(), Garfield::ViewDrift::Plot3d(), Garfield::ViewField::PlotFieldLines(), PlotLimitsFromUserBox(), and SetArea().
|
protected |
Definition at line 89 of file ViewBase.hh.
Referenced by Garfield::ViewFEMesh::CreateDefaultAxes(), Garfield::ViewFEMesh::Plot(), Garfield::ViewDrift::Plot2d(), Garfield::ViewGeometry::Plot2d(), Garfield::ViewField::PlotFieldLines(), Garfield::ViewIsochrons::PlotIsochrons(), and SetArea().
|
protected |
Definition at line 95 of file ViewBase.hh.
Referenced by Clip(), InBox(), Garfield::ViewDrift::Plot3d(), Garfield::ViewField::PlotFieldLines(), PlotLimitsFromUserBox(), and SetArea().
|
protected |
Definition at line 90 of file ViewBase.hh.
Referenced by Garfield::ViewFEMesh::CreateDefaultAxes(), Garfield::ViewFEMesh::Plot(), Garfield::ViewDrift::Plot2d(), Garfield::ViewGeometry::Plot2d(), Garfield::ViewField::PlotFieldLines(), Garfield::ViewIsochrons::PlotIsochrons(), and SetArea().
|
protected |
Definition at line 95 of file ViewBase.hh.
Referenced by Clip(), InBox(), Garfield::ViewDrift::Plot3d(), Garfield::ViewField::PlotFieldLines(), PlotLimitsFromUserBox(), and SetArea().
|
protected |
Definition at line 90 of file ViewBase.hh.
Referenced by Garfield::ViewFEMesh::CreateDefaultAxes(), Garfield::ViewFEMesh::Plot(), Garfield::ViewDrift::Plot2d(), Garfield::ViewGeometry::Plot2d(), Garfield::ViewField::PlotFieldLines(), Garfield::ViewIsochrons::PlotIsochrons(), and SetArea().
|
protected |
Definition at line 96 of file ViewBase.hh.
Referenced by Clip(), InBox(), Garfield::ViewDrift::Plot3d(), Garfield::ViewField::PlotFieldLines(), PlotLimitsFromUserBox(), and SetArea().
|
protected |
Definition at line 96 of file ViewBase.hh.
Referenced by Clip(), Garfield::ViewDrift::Plot3d(), Garfield::ViewField::PlotFieldLines(), PlotLimitsFromUserBox(), and SetArea().