BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
RecMdcDedxHit.cxx
Go to the documentation of this file.
1/*
2 * @class : MdcDedxHit
3 *
4 * this class models "dE/dx hit" used in Mdc Reconstruction
5 *
6 * @author:xcao
7 *
8 * ********************************************************/
9
10#include "MdcRecEvent/RecMdcDedxHit.h"
11
13 m_trkid = -1;
14 m_lr = 0;
15 m_pathlength = -1;
16 m_dedx = 0;
17 m_mdcid = 0;
18 m_mdcKalHelixSeg = 0;
19 m_mdcHit = 0;
20}
21
23 : m_trkid( recdedxhit.m_trkid )
24 , m_lr( recdedxhit.m_lr )
25 , m_pathlength( recdedxhit.m_pathlength )
26 , m_dedx( recdedxhit.m_dedx )
27 , m_mdcid( recdedxhit.m_mdcid )
28 , m_mdcKalHelixSeg( recdedxhit.m_mdcKalHelixSeg )
29 , m_mdcHit( recdedxhit.m_mdcHit ) {}
30
32 if ( m_trkid == -1 ) return false;
33 return true;
34}
35
bool isGrouped(void)