Hall-D Software  alpha
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
track_hists/trackpar.h
Go to the documentation of this file.
1 // $Id$
2 //
3 // File: DEventProcessor_trackeff_hists.h
4 // Created: Wed Oct 10 13:30:37 EDT 2007
5 // Creator: davidl (on Darwin fwing-dhcp95.jlab.org 8.10.1 i386)
6 //
7 
8 #ifndef _trackpar_
9 #define _trackpar_
10 
11 #include <TObject.h>
12 #include <TVector3.h>
13 
14 
15 class trackpar:public TObject{
16 
17  public:
18 
19  uint64_t eventnumber;
20  TVector3 pthrown;
21  TVector3 pfit;
22  float z_thrown;
23  float z_fit;
24  float z_can;
25  float r_fit;
26  int NLRcorrect;
27  int NLRincorrect;
28 
29  private:
30  ClassDef(trackpar,1);
31 
32 };
33 
34 #endif // _trackpar_
35 
ClassDef(trackpar, 1)