BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtRecEtaToGG.cxx
Go to the documentation of this file.
1#include "EvtRecEvent/EvtRecEtaToGG.h"
2
3EvtRecEtaToGG::EvtRecEtaToGG() : m_unconMass( 0 ), m_chisq( 0 ) {
4 m_hi = 0;
5 m_lo = 0;
6}
7
9 : m_unconMass( aEtaToGG.m_unconMass )
10 , m_chisq( aEtaToGG.m_chisq )
11 , m_hiPfit( aEtaToGG.m_hiPfit )
12 , m_loPfit( aEtaToGG.m_loPfit )
13 , m_hi( aEtaToGG.m_hi )
14 , m_lo( aEtaToGG.m_lo ) {}
15
17
18 m_unconMass = aEtaToGG.m_unconMass;
19 m_chisq = aEtaToGG.m_chisq;
20 m_hiPfit = aEtaToGG.m_hiPfit;
21 m_loPfit = aEtaToGG.m_loPfit;
22 m_hi = aEtaToGG.m_hi;
23 m_lo = aEtaToGG.m_lo;
24
25 return *this;
26}
EvtRecEtaToGG & operator=(const EvtRecEtaToGG &aEtaToGG)