#include <DQAPi0Info.h>
Definition at line 18 of file DQAPi0Info.h.
◆ DQAPi0Info()
DQAPi0Info::DQAPi0Info |
( |
| ) |
|
Definition at line 3 of file DQAPi0Info.cxx.
3 : m_shower0(0),m_shower1(0),m_p4(0),m_mpi0(0)
4{
5 m_energyThreshold_e = 0.05;
6 m_energyThreshold_b = 0.025;
7 m_costheta_b = 0.82;
8 m_costheta_e1 = 0.85;
9 m_costheta_e2 = 0.92;
10}
◆ ~DQAPi0Info()
DQAPi0Info::~DQAPi0Info |
( |
| ) |
|
Definition at line 12 of file DQAPi0Info.cxx.
13{
14 m_shower0 = 0;
15 m_shower1 = 0;
16 m_p4 = HepLorentzVector(0,0,0,0);
17 m_mpi0 = 0;
18}
◆ calculate()
bool DQAPi0Info::calculate |
( |
| ) |
|
|
inline |
Definition at line 61 of file DQAPi0Info.h.
62{
63 if (m_shower0 == 0 || m_shower1 == 0 ) return false;
66 double eraw1 = photon1->
energy();
67 double phiemc1 = photon1->
phi();
69 double eraw2 = photon2->
energy();
70 double phiemc2 = photon2->
phi();
74 if (!((costheta1 < m_costheta_b && eraw1 > m_energyThreshold_b ) ||
75 (costheta1 > m_costheta_e1 && costheta1 < m_costheta_e2 && eraw1 > m_energyThreshold_e )))
76 return false;
77 if (!((costheta2 < m_costheta_b && eraw2 > m_energyThreshold_b ) ||
78 (costheta2 > m_costheta_e1 && costheta2 < m_costheta_e2 && eraw2 > m_energyThreshold_e )))
79 return false;
80
81 HepLorentzVector pemc1;
85 pemc1.setE(eraw1);
86
87 HepLorentzVector pemc2;
91 pemc2.setE(eraw2);
92
93 HepLorentzVector ppi0=pemc1+pemc2;
94 m_p4 = ppi0;
95 m_mpi0 = ppi0.m();
96 return true;
97}
double sin(const BesAngle a)
double cos(const BesAngle a)
RecEmcShower * emcShower()
Referenced by DQADtag::execute().
◆ getchild()
Definition at line 35 of file DQAPi0Info.h.
36{
38 return m_shower0;
40 return m_shower1;
41}
◆ m()
◆ p4()
HepLorentzVector DQAPi0Info::p4 |
( |
| ) |
|
|
inline |
◆ setchild()
void DQAPi0Info::setchild |
( |
int | n, |
|
|
EvtRecTrack * | shower ) |
|
inline |
Definition at line 23 of file DQAPi0Info.h.
24{
26 m_shower0 = shower;
28 m_shower1 = shower;
29}
◆ setchilds()
◆ setCosTheta()
void DQAPi0Info::setCosTheta |
( |
double | costheta_b, |
|
|
double | costheta_e1, |
|
|
double | costheta_e2 ) |
|
inline |
Definition at line 55 of file DQAPi0Info.h.
56{
57 m_costheta_b = costheta_b;
58 m_costheta_e1 = costheta_e1;
59 m_costheta_e2 = costheta_e2;
60}
◆ setEnergyThreshold()
void DQAPi0Info::setEnergyThreshold |
( |
double | energyThreshold_b, |
|
|
double | energyThreshold_e ) |
|
inline |
Definition at line 50 of file DQAPi0Info.h.
51{
52 m_energyThreshold_b = energyThreshold_b;
53 m_energyThreshold_e = energyThreshold_e;
54}
The documentation for this class was generated from the following files: