EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EvalHit.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EvalHit.cc
1 #include "EvalHit.h"
2 
3 #include <g4main/PHG4Hit.h>
4 
5 EvalHit::EvalHit(const PHG4Hit *g4hit)
6 {
7  detid = g4hit->get_detid();
8  trackid = g4hit->get_trkid();
9  xin = g4hit->get_x(0);
10  yin = g4hit->get_y(0);
11  zin = g4hit->get_z(0);
12  tin = g4hit->get_t(0);
13  xout = g4hit->get_x(1);
14  yout = g4hit->get_y(1);
15  zout = g4hit->get_z(1);
16  tout = g4hit->get_t(1);
17  edep = g4hit->get_edep();
18  eion = g4hit->get_eion();
19  light_yield = g4hit->get_light_yield();
20 }