Auxiliary class to evaluate atmospheric muon hypothesis.
More...
#include <JEvtToolkit.hh>
|
| | JAtmosphericMuon () |
| | Default constructor.
|
| |
| | JAtmosphericMuon (const double theta1, const double theta2) |
| | Constructor.
|
| |
| double | operator() (JEvt::const_iterator __begin, JEvt::const_iterator __end) const |
| | Test is event is atmospheric muon.
|
| |
Auxiliary class to evaluate atmospheric muon hypothesis.
The hypothesis is tested by means of the difference in quality between the best upward and best downward track.
Definition at line 1019 of file JReconstruction/JEvtToolkit.hh.
◆ JAtmosphericMuon() [1/2]
| JRECONSTRUCTION::JAtmosphericMuon::JAtmosphericMuon |
( |
| ) |
|
|
inline |
◆ JAtmosphericMuon() [2/2]
| JRECONSTRUCTION::JAtmosphericMuon::JAtmosphericMuon |
( |
const double | theta1, |
|
|
const double | theta2 ) |
|
inline |
Constructor.
- Parameters
-
| theta1 | upper hemisphere angle [deg] |
| theta2 | lower hemisphere angle [deg] |
Definition at line 1036 of file JReconstruction/JEvtToolkit.hh.
1037 :
1040 {}
static const double PI
Mathematical constants.
◆ operator()()
| double JRECONSTRUCTION::JAtmosphericMuon::operator() |
( |
JEvt::const_iterator | __begin, |
|
|
JEvt::const_iterator | __end ) const |
|
inline |
Test is event is atmospheric muon.
- Parameters
-
| __begin | begin of data |
| __end | end of data |
- Returns
- negative if preferably down / positive if preferably up
Definition at line 1050 of file JReconstruction/JEvtToolkit.hh.
1052 {
1053 double Qup = 0.0;
1054 double Qdown = 0.0;
1055
1056 for (JEvt::const_iterator i = __begin; i != __end; ++i) {
1057
1058 if (i->getDZ() >=
dot1) {
1059
1060 if (i->getQ() > Qup) {
1061 Qup = i->getQ();
1062 }
1063
1064 }
else if (i->getDZ() <=
dot2) {
1065
1066 if (i->getQ() > Qdown) {
1067 Qdown = i->getQ();
1068 }
1069 }
1070 }
1071
1072 return Qup - Qdown;
1073 }
◆ operator>>
Read atmospheric muon analyser from input.
- Parameters
-
| in | input stream |
| object | atmospheric muon analyser |
- Returns
- input stream
Definition at line 1083 of file JReconstruction/JEvtToolkit.hh.
1084 {
1085 double theta1, theta2;
1086
1087 in >> theta1 >> theta2;
1088
1089 object.dot1 = cos(theta1 *
JMATH::PI/180.0);
1090 object.dot2 = cos(theta2 *
JMATH::PI/180.0);
1091
1092 return in;
1093 }
◆ operator<<
| std::ostream & operator<< |
( |
std::ostream & | out, |
|
|
const JAtmosphericMuon & | object ) |
|
friend |
Write atmospheric muon analyser to output.
- Parameters
-
| out | output stream |
| object | atmospheric muon analyser |
- Returns
- output stream
Definition at line 1103 of file JReconstruction/JEvtToolkit.hh.
1104 {
1107
1108 return out;
1109 }
◆ dot1
| double JRECONSTRUCTION::JAtmosphericMuon::dot1 |
◆ dot2
| double JRECONSTRUCTION::JAtmosphericMuon::dot2 |
The documentation for this class was generated from the following file: