Revision: | 1.1 |
Committed: | Tue Oct 20 17:15:16 2009 UTC (15 years, 6 months ago) by dgele |
Content type: | text/plain |
Branch: | MAIN |
Branch point for: | ANA |
Log Message: | Initial revision |
# | User | Rev | Content |
---|---|---|---|
1 | dgele | 1.1 | #ifndef __TOP_TREE_TRACK_H__ |
2 | #define __TOP_TREE_TRACK_H__ | ||
3 | |||
4 | |||
5 | #include <map> | ||
6 | #include <vector> | ||
7 | #include <string> | ||
8 | |||
9 | #include "DataFormats/TrackReco/interface/Track.h" | ||
10 | #include "Vec.h" | ||
11 | |||
12 | namespace TopTree | ||
13 | { | ||
14 | class Track | ||
15 | { | ||
16 | public: | ||
17 | Track(); | ||
18 | ~Track(); | ||
19 | |||
20 | void Reset(); | ||
21 | |||
22 | LorentzVector TrackTL; | ||
23 | |||
24 | double Track_Chi2; | ||
25 | int Track_NumberOfHits; | ||
26 | |||
27 | double Track_d0; | ||
28 | double Track_d0Error; | ||
29 | double Track_dxy; | ||
30 | double Track_dxyError; | ||
31 | double Track_dz; | ||
32 | double Track_dzError; | ||
33 | |||
34 | int Track_charge; | ||
35 | |||
36 | |||
37 | |||
38 | }; | ||
39 | } | ||
40 | #endif |