Hall-D Software  alpha
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pull_t.h
Go to the documentation of this file.
1 // $Id$
2 //
3 // File: pull_t.h
4 // Created: Fri. Feb. 19, 2010
5 // Creator: davidl
6 //
7 
8 #ifndef _pull_t_
9 #define _pull_t_
10 
11 #include <TObject.h>
12 #include <TVector3.h>
13 
14 
15 class pull_t:public TObject{
16 
17  public:
18  uint64_t eventnumber;
19  float resi;
20  float err;
21  float s;
22  float pull;
23  float trk_chisq;
24  float trk_Ndof;
25  TVector3 pthrown;
26 
27  private:
28  ClassDef(pull_t,1);
29 
30 };
31 
32 #endif // _pull_t_
33 
Definition: pull_t.h:15
TVector3 pthrown
Definition: pull_t.h:25
ClassDef(pull_t, 1)
uint64_t eventnumber
Definition: pull_t.h:18
float s
Definition: pull_t.h:21
float pull
Definition: pull_t.h:22
float trk_Ndof
Definition: pull_t.h:24
float resi
Definition: pull_t.h:19
float trk_chisq
Definition: pull_t.h:23
float err
Definition: pull_t.h:20