Belle II Software development
|
Base class to create a Material Scan of the detector geometry. More...
#include <MaterialScan.h>
Classes | |
struct | ScanParams |
Helper struct to Store Parameters of a Scan. More... | |
Public Member Functions | |
MaterialScan2D (TFile *rootFile, const std::string &name, const std::string &axisLabel, const ScanParams ¶ms) | |
Constructor. | |
bool | createNext (G4ThreeVector &origin, G4ThreeVector &direction) override |
Get the origin and direction for the next scan particle. | |
int | getNRays () const override |
Return the number of rays in this scan. | |
void | UserSteppingAction (const G4Step *step) override |
Record the material budget for each step of the particles. | |
std::string | getName () const |
Return the name of the scan. | |
Protected Member Functions | |
virtual void | getRay (G4ThreeVector &origin, G4ThreeVector &direction)=0 |
Get the origin and direction for the next scan particle. | |
TH2D * | getHistogram (const std::string &name) |
get histogram for a given name, create if needed. | |
void | fillValue (const std::string &name, double value) |
Fill the recorded material budget into the corresponding histogram. | |
bool | checkStep (const G4Step *step) |
check for stuck tracks by looking at the step length | |
Protected Attributes | |
ScanParams | m_params |
Parameters for the scan. | |
double | m_curU |
Current value of the parametetr u. | |
double | m_stepU |
Stepsize for the parameter u. | |
double | m_curV |
Current value of the parametetr v. | |
double | m_stepV |
Stepsize for the parameter v. | |
double | m_curDepth |
Tracklength of the current Ray. | |
std::map< std::string, std::unique_ptr< TH2D > > | m_regions |
Map holding pointers to all created histograms. | |
TFile * | m_rootFile |
Pointer to the root file for the histograms. | |
std::string | m_name |
Name of the scan, will be prefixed to all histogram names. | |
std::string | m_axisLabel |
Labels for the coordinate axes. | |
Private Attributes | |
int | m_zeroSteps {0} |
Count the number of steps with (almost) zero length. | |
Static Private Attributes | |
static constexpr double | c_zeroTolerance = 1e-6 |
maximum Step length to be considered zero | |
static constexpr int | c_maxZeroStepsNudge = 10 |
maximum number of consecutive zero steps before nudging the track along | |
static constexpr int | c_maxZeroStepsKill = 20 |
maximum number of consecutive zero steps before killing the track | |
Base class to create a Material Scan of the detector geometry.
This class is used to record the Material budget encountered by a particle and provide origin and directions of all particles used for the scan.
Definition at line 80 of file MaterialScan.h.
MaterialScan2D | ( | TFile * | rootFile, |
const std::string & | name, | ||
const std::string & | axisLabel, | ||
const ScanParams & | params | ||
) |
Constructor.
rootFile | Pointer to the ROOTFile where the histograms will be stored. |
name | Prefix to preprend to all Histograms |
axisLabel | Labels for the histogram axes, separated by semicolon |
params | Parameters for the scan |
Definition at line 78 of file MaterialScan.cc.
|
protectedinherited |
check for stuck tracks by looking at the step length
Definition at line 44 of file MaterialScan.cc.
|
overridevirtual |
Get the origin and direction for the next scan particle.
[out] | origin | Origin of the next scan particle |
[out] | direction | Direction of the next scan particle |
Implements MaterialScanBase.
Definition at line 97 of file MaterialScan.cc.
|
protected |
Fill the recorded material budget into the corresponding histogram.
name | Name of the histogram |
value | Value to store |
Definition at line 138 of file MaterialScan.cc.
|
protected |
get histogram for a given name, create if needed.
name | Name of the histogram |
Definition at line 125 of file MaterialScan.cc.
|
inlineinherited |
|
inlineoverridevirtual |
Return the number of rays in this scan.
Implements MaterialScanBase.
Definition at line 122 of file MaterialScan.h.
|
protectedpure virtual |
Get the origin and direction for the next scan particle.
To be overridden by descendents
[out] | origin | Origin of the next scan particle |
[out] | direction | Direction of the next scan particle |
Implemented in MaterialScanSpherical, and MaterialScanPlanar.
|
override |
Record the material budget for each step of the particles.
Definition at line 144 of file MaterialScan.cc.
|
staticconstexprprivateinherited |
maximum number of consecutive zero steps before killing the track
Definition at line 71 of file MaterialScan.h.
|
staticconstexprprivateinherited |
maximum number of consecutive zero steps before nudging the track along
Definition at line 69 of file MaterialScan.h.
|
staticconstexprprivateinherited |
maximum Step length to be considered zero
Definition at line 67 of file MaterialScan.h.
|
protectedinherited |
Labels for the coordinate axes.
Definition at line 64 of file MaterialScan.h.
|
protected |
Tracklength of the current Ray.
Definition at line 156 of file MaterialScan.h.
|
protected |
Current value of the parametetr u.
Definition at line 148 of file MaterialScan.h.
|
protected |
Current value of the parametetr v.
Definition at line 152 of file MaterialScan.h.
|
protectedinherited |
Name of the scan, will be prefixed to all histogram names.
Definition at line 62 of file MaterialScan.h.
|
protected |
Parameters for the scan.
Definition at line 146 of file MaterialScan.h.
|
protected |
Map holding pointers to all created histograms.
Definition at line 158 of file MaterialScan.h.
|
protectedinherited |
Pointer to the root file for the histograms.
Definition at line 60 of file MaterialScan.h.
|
protected |
Stepsize for the parameter u.
Definition at line 150 of file MaterialScan.h.
|
protected |
Stepsize for the parameter v.
Definition at line 154 of file MaterialScan.h.
|
privateinherited |
Count the number of steps with (almost) zero length.
Definition at line 73 of file MaterialScan.h.