|
| | VisiblesVetoResult () |
| | Constructor.
|
| |
| virtual | ~VisiblesVetoResult () |
| | Destructor.
|
| |
| void | setVariables (int n_layers_hit, double x_std, double y_std, double z_std, double x_mean, double y_mean, double r_mean, int iso_hits, double iso_energy, int n_readout_hits, double summed_det, double r_mean_from_photon_track) |
| |
| void | clear () |
| |
| bool | passesVeto () const |
| |
| double | getDisc () const |
| |
| int | getNLayersHit () const |
| |
| double | getXStd () const |
| |
| double | getYStd () const |
| |
| double | getZStd () const |
| |
| double | getXMean () const |
| |
| double | getYMean () const |
| |
| double | getRMean () const |
| |
| int | getIsoHits () const |
| |
| double | getIsoEnergy () const |
| |
| int | getNReadoutHits () const |
| |
| double | getSummedDet () const |
| |
| double | getDistFromPhotonTrack () const |
| |
Definition at line 18 of file VisiblesVetoResult.h.
◆ VisiblesVetoResult()
| ldmx::VisiblesVetoResult::VisiblesVetoResult |
( |
| ) |
|
◆ ~VisiblesVetoResult()
| ldmx::VisiblesVetoResult::~VisiblesVetoResult |
( |
| ) |
|
|
virtual |
◆ clear()
| void ldmx::VisiblesVetoResult::clear |
( |
| ) |
|
Definition at line 10 of file VisiblesVetoResult.cxx.
10 {
11 passes_veto_ = false;
12
13 n_layers_hit_ = 0;
14 x_std_ = 0.;
15 y_std_ = 0.;
16 z_std_ = 0.;
17 x_mean_ = 0.;
18 y_mean_ = 0.;
19 r_mean_ = 0.;
20 iso_hits_ = 0;
21 iso_energy_ = 0.;
22 n_readout_hits_ = 0;
23 summed_det_ = 0.;
24 r_mean_from_photon_track_ = 0.;
25
26 disc_value_ = 0.;
27}
◆ getDisc()
| double ldmx::VisiblesVetoResult::getDisc |
( |
| ) |
const |
|
inline |
◆ getDistFromPhotonTrack()
| double ldmx::VisiblesVetoResult::getDistFromPhotonTrack |
( |
| ) |
const |
|
inline |
◆ getIsoEnergy()
| double ldmx::VisiblesVetoResult::getIsoEnergy |
( |
| ) |
const |
|
inline |
◆ getIsoHits()
| int ldmx::VisiblesVetoResult::getIsoHits |
( |
| ) |
const |
|
inline |
◆ getNLayersHit()
| int ldmx::VisiblesVetoResult::getNLayersHit |
( |
| ) |
const |
|
inline |
◆ getNReadoutHits()
| int ldmx::VisiblesVetoResult::getNReadoutHits |
( |
| ) |
const |
|
inline |
◆ getRMean()
| double ldmx::VisiblesVetoResult::getRMean |
( |
| ) |
const |
|
inline |
◆ getSummedDet()
| double ldmx::VisiblesVetoResult::getSummedDet |
( |
| ) |
const |
|
inline |
◆ getXMean()
| double ldmx::VisiblesVetoResult::getXMean |
( |
| ) |
const |
|
inline |
◆ getXStd()
| double ldmx::VisiblesVetoResult::getXStd |
( |
| ) |
const |
|
inline |
◆ getYMean()
| double ldmx::VisiblesVetoResult::getYMean |
( |
| ) |
const |
|
inline |
◆ getYStd()
| double ldmx::VisiblesVetoResult::getYStd |
( |
| ) |
const |
|
inline |
◆ getZStd()
| double ldmx::VisiblesVetoResult::getZStd |
( |
| ) |
const |
|
inline |
◆ passesVeto()
| bool ldmx::VisiblesVetoResult::passesVeto |
( |
| ) |
const |
|
inline |
◆ setVariables()
| void ldmx::VisiblesVetoResult::setVariables |
( |
int | n_layers_hit, |
|
|
double | x_std, |
|
|
double | y_std, |
|
|
double | z_std, |
|
|
double | x_mean, |
|
|
double | y_mean, |
|
|
double | r_mean, |
|
|
int | iso_hits, |
|
|
double | iso_energy, |
|
|
int | n_readout_hits, |
|
|
double | summed_det, |
|
|
double | r_mean_from_photon_track ) |
Definition at line 29 of file VisiblesVetoResult.cxx.
34 {
35 n_layers_hit_ = n_layers_hit;
36 x_std_ = x_std;
37 y_std_ = y_std;
38 z_std_ = z_std;
39 x_mean_ = x_mean;
40 y_mean_ = y_mean;
41 r_mean_ = r_mean;
42 iso_hits_ = iso_hits;
43 iso_energy_ = iso_energy;
44 n_readout_hits_ = n_readout_hits;
45 summed_det_ = summed_det;
46 r_mean_from_photon_track_ = r_mean_from_photon_track;
47}
◆ operator<<
Definition at line 49 of file VisiblesVetoResult.cxx.
49 {
50 return s << "[ VisiblesVetoResult ]:\n"
51 << "\t Passes veto : " << p.passes_veto_ << "\n";
52}
◆ disc_value_
| double ldmx::VisiblesVetoResult::disc_value_ {0} |
|
private |
◆ iso_energy_
| double ldmx::VisiblesVetoResult::iso_energy_ {0} |
|
private |
◆ iso_hits_
| int ldmx::VisiblesVetoResult::iso_hits_ {0} |
|
private |
◆ n_layers_hit_
| int ldmx::VisiblesVetoResult::n_layers_hit_ {0} |
|
private |
◆ n_readout_hits_
| int ldmx::VisiblesVetoResult::n_readout_hits_ {0} |
|
private |
◆ passes_veto_
| bool ldmx::VisiblesVetoResult::passes_veto_ {false} |
|
private |
◆ r_mean_
| double ldmx::VisiblesVetoResult::r_mean_ {0} |
|
private |
◆ r_mean_from_photon_track_
| double ldmx::VisiblesVetoResult::r_mean_from_photon_track_ {0} |
|
private |
◆ summed_det_
| double ldmx::VisiblesVetoResult::summed_det_ {0} |
|
private |
◆ x_mean_
| double ldmx::VisiblesVetoResult::x_mean_ {0} |
|
private |
◆ x_std_
| double ldmx::VisiblesVetoResult::x_std_ {0} |
|
private |
◆ y_mean_
| double ldmx::VisiblesVetoResult::y_mean_ {0} |
|
private |
◆ y_std_
| double ldmx::VisiblesVetoResult::y_std_ {0} |
|
private |
◆ z_std_
| double ldmx::VisiblesVetoResult::z_std_ {0} |
|
private |
The documentation for this class was generated from the following files: