ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DGele/MiniTreeFormat/TTbar/interface/Jet.h
Revision: 1.2
Committed: Tue Oct 20 17:53:14 2009 UTC (15 years, 6 months ago) by dgele
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Error occurred while calculating annotation data.
Log Message:
remove

File Contents

# Content
1 #ifndef __TOP_TREE_JET_H__
2 #define __TOP_TREE_JET_H__
3
4 #include <map>
5 #include <vector>
6 #include <string>
7
8 #include <DataFormats/Common/interface/RefVector.h>
9 #include "DataFormats/JetReco/interface/JetTracksAssociation.h"
10 #include "DataFormats/TrackReco/interface/Track.h"
11 #include "Vec.h"
12
13 namespace TopTree
14 {
15 class Jet
16 {
17 public:
18 Jet();
19 ~Jet();
20
21 void Reset();
22
23 LorentzVector v4; // 4 vector of jet.
24 double scale; // Jet correction factor
25
26 double emEnergyFraction;
27 int nTracks;
28 int partonFlavour;
29 double TCDiscri;
30 Point3 vertex;
31 std::vector<reco::Track> TracksOfJet;
32 void setTracks( const reco::TrackRefVector& );
33
34 };
35 }
36 #endif
37