CGEM BOSS 6.6.5.i
BESIII Offline Software System
Loading...
Searching...
No Matches
CgemMcHit.cxx
Go to the documentation of this file.
1#include "McTruth/CgemMcHit.h"
2
3//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
4Event::CgemMcHit::CgemMcHit(int f_ID_track , int f_ID_layer , int pdg,
5 int f_ID_parent , double f_E_deposit ,
6 double f_XYZ_pre_x , double f_XYZ_pre_y , double f_XYZ_pre_z ,
7 double f_XYZ_post_x , double f_XYZ_post_y , double f_XYZ_post_z ,
8 double f_P_pre_x , double f_P_pre_y , double f_P_pre_z ,
9 double f_P_post_x , double f_P_post_y , double f_P_post_z )
10 /*,
11 double f_Cu_pre_x , double f_Cu_pre_y , double f_Cu_pre_z ,
12 double f_Cu_post_x , double f_Cu_post_y , double f_Cu_post_z ,
13 double f_P_Cu_pre_x , double f_P_Cu_pre_y , double f_P_Cu_pre_z ,
14 double f_P_Cu_post_x, double f_P_Cu_post_y, double f_P_Cu_post_z)
15 */
16{
17 m_ID_track = f_ID_track ;
18 m_ID_layer = f_ID_layer ;
19 m_pdg = pdg;
20 m_ID_parent = f_ID_parent;
21 m_E_deposit = f_E_deposit ;
22 m_XYZ_pre_x = f_XYZ_pre_x ;
23 m_XYZ_pre_y = f_XYZ_pre_y ;
24 m_XYZ_pre_z = f_XYZ_pre_z ;
25 m_XYZ_post_x = f_XYZ_post_x ;
26 m_XYZ_post_y = f_XYZ_post_y ;
27 m_XYZ_post_z = f_XYZ_post_z ;
28 m_P_pre_x = f_P_pre_x ;
29 m_P_pre_y = f_P_pre_y ;
30 m_P_pre_z = f_P_pre_z ;
31 m_P_post_x = f_P_post_x ;
32 m_P_post_y = f_P_post_y ;
33 m_P_post_z = f_P_post_z ;
34 /*
35 m_Cu_pre_x = f_Cu_pre_x ;
36 m_Cu_pre_y = f_Cu_pre_y ;
37 m_Cu_pre_z = f_Cu_pre_z ;
38 m_Cu_post_x = f_Cu_post_x ;
39 m_Cu_post_y = f_Cu_post_y ;
40 m_Cu_post_z = f_Cu_post_z ;
41 m_P_Cu_pre_x = f_P_Cu_pre_x ;
42 m_P_Cu_pre_y = f_P_Cu_pre_y ;
43 m_P_Cu_pre_z = f_P_Cu_pre_z ;
44 m_P_Cu_post_x = f_P_Cu_post_x ;
45 m_P_Cu_post_y = f_P_Cu_post_y ;
46 m_P_Cu_post_z = f_P_Cu_post_z ;
47 */
48}
49
50//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......