EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4EvtTree.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4EvtTree.h
1 #ifndef G4HISTOS_G4EVTTREE_H
2 #define G4HISTOS_G4EVTTREE_H
3 
4 #define MAXLAYER 50
5 #define MAXHIT 500000
6 
7 typedef struct
8 {
9  // Event Level
10  float energy;
11  float theta;
12  float phi;
13  float px;
14  float py;
15  float pz;
16 
21 
22  float cemcactESum[MAXLAYER];
23  float cemcabsESum[MAXLAYER];
24  float hcalactESum[MAXLAYER];
25  float hcalabsESum[MAXLAYER];
26 
27  // Hit level
28  int nhits;
29  int detid[MAXHIT];
30  int layer[MAXHIT];
31  int hitid[MAXHIT];
32  int scintid[MAXHIT];
33  int trkid[MAXHIT];
34  float x0[MAXHIT];
35  float y0[MAXHIT];
36  float z0[MAXHIT];
37  float x1[MAXHIT];
38  float y1[MAXHIT];
39  float z1[MAXHIT];
40  float edep[MAXHIT];
41 
42 } G4EvtTree;
43 
44 #endif