CGEM BOSS 6.6.5.f
BESIII Offline Software System
Loading...
Searching...
No Matches
RecCgemHit.cxx
Go to the documentation of this file.
1/*
2 * @class : RecCgemHit
3 *
4 * this class models "Hit" used in Cgem Reconstruction
5 *
6 * ********************************************************/
7
8#include "CgemRecEvent/RecCgemHit.h"
9
11 : m_cgemid(0),
12 m_id(-1),
13 m_trkid(-1),
14 m_pChisq(999.0),
15 m_stat(0),
16 m_tdc(0.0),
17 m_adc(0.0),
18 m_doca(999.0),
19 m_entra(0.0),
20 m_zhit(999.0),
21 m_fltLen(0.0)
22 {
23
24 }
25
27 : m_id( rechit.m_id),
28 m_trkid(rechit.m_trkid),
29 m_pChisq( rechit.m_pChisq),
30 m_stat( rechit.m_stat),
31 m_cgemid( rechit.m_cgemid),
32 m_tdc( rechit.m_tdc),
33 m_adc( rechit.m_adc),
34 m_doca( rechit.m_doca),
35 m_entra( rechit.m_entra),
36 m_zhit( rechit.m_zhit),
37 m_fltLen( rechit.m_fltLen) {
38}
39
40bool
42 if(m_trkid == -1 ) return false;
43 return true;
44}
45
47}
bool isGrouped(void)
Definition: RecCgemHit.cxx:41