27 m_trackIndex = right.m_trackIndex;
28 m_g4Index = right.m_g4Index;
29 m_partId = right.m_partId;
30 m_scinNb = right.m_scinNb;
31 m_gapNb = right.m_gapNb;
32 m_edep = right.m_edep;
33 m_stepL = right.m_stepL;
34 m_trackL = right.m_trackL;
36 m_time = right.m_time;
37 m_deltaT = right.m_deltaT;
38 m_pDirection = right.m_pDirection;
39 m_momentum = right.m_momentum;
41 m_charge = right.m_charge;
42 m_number_of_ions = right.m_number_of_ions;
43 m_strip = right.m_strip;
44 m_locPos = right.m_locPos;
48 m_trackIndex = right.m_trackIndex;
49 m_g4Index = right.m_g4Index;
50 m_partId = right.m_partId;
51 m_scinNb = right.m_scinNb;
52 m_gapNb = right.m_gapNb;
53 m_edep = right.m_edep;
54 m_stepL = right.m_stepL;
55 m_trackL = right.m_trackL;
57 m_time = right.m_time;
58 m_deltaT = right.m_deltaT;
59 m_pDirection = right.m_pDirection;
60 m_momentum = right.m_momentum;
62 m_charge = right.m_charge;
63 m_number_of_ions = right.m_number_of_ions;
64 m_strip = right.m_strip;
65 m_locPos = right.m_locPos;
84 G4VVisManager* pVVisManager = G4VVisManager::GetConcreteInstance();
87 G4Circle circle( m_pos );
88 circle.SetScreenSize( 1. );
89 circle.SetFillStyle( G4Circle::filled );
90 G4Colour colour( 0., 0., 1. );
91 G4VisAttributes attribs( colour );
92 circle.SetVisAttributes( attribs );
93 pVVisManager->Draw( circle );
98 G4cout << m_trackIndex <<
" " << m_g4Index <<
" " << m_partId <<
" " << m_scinNb <<
" ";
99 G4double posx = m_pos.x();
100 G4double posy = m_pos.y();
101 G4double posr = sqrt( posx * posx + posy * posy );
102 G4cout << posr <<
" " << m_edep <<
" " << m_stepL << G4endl << G4endl;