Class Reference for E1039 Core & Analysis Software
TruthTrack.h
Go to the documentation of this file.
1 /*
2  * TruthEval.h
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw@nmsu.edu
6  */
7 
8 #ifndef _H_TruthTrack_H_
9 #define _H_TruthTrack_H_
10 
11 #include <TObject.h>
12 
13 class TruthTrack : public TObject{
14 public:
16  pid(0),
17  vx(-9999), vy(-9999), vz(-9999), t(-9999),
18  px(-9999), py(-9999), pz(-9999), e(-9999),
19  pt(-9999), p(-9999), eta(-9999), mass(-9999),
20  parentid(-9999),
21  det_id(-9999),
22  edep_coil(-9999),
23  path_coil(-9999),
24  edep_wire(-9999),
25  path_wire(-9999)
26  {}
27  int pid;
28  float vx, vy, vz, t;
29  float px, py, pz, e;
30  float pt, p, eta, mass;
31 
32  int parentid;
33  int det_id;
34  float edep_coil;
35  float path_coil;
36  float edep_wire;
37  float path_wire;
38 
39  ClassDef(TruthTrack, 1)
40 };
41 
42 #endif
float path_coil
Definition: TruthTrack.h:35
float vx
Definition: TruthTrack.h:28
float path_wire
Definition: TruthTrack.h:37
float edep_coil
0 : Target, 1: Coil, 9999: other
Definition: TruthTrack.h:34
float p
Definition: TruthTrack.h:30
float vz
Definition: TruthTrack.h:28
float pt
Definition: TruthTrack.h:30
float edep_wire
Definition: TruthTrack.h:36
float pz
Definition: TruthTrack.h:29
float vy
Definition: TruthTrack.h:28
float px
Definition: TruthTrack.h:29
float e
Definition: TruthTrack.h:29
float py
Definition: TruthTrack.h:29
int det_id
Definition: TruthTrack.h:33
float eta
Definition: TruthTrack.h:30
int parentid
Definition: TruthTrack.h:32
float mass
Definition: TruthTrack.h:30
float t
Definition: TruthTrack.h:28