ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/UHHAnalysis/NtupleWriter/Objects/GenTopJet.h
Revision: 1.1
Committed: Wed Jun 19 13:28:24 2013 UTC (11 years, 10 months ago) by rkogler
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Error occurred while calculating annotation data.
Log Message:
added substructure information and jet constituents

File Contents

# Content
1 #ifndef GenTopJet_H
2 #define GenTopJet_H
3
4 #include "Particle.h"
5 #include "TLorentzVector.h"
6
7
8 /**
9 * @short top-jet class with only subjets, used for generator information
10 * @author Roman Kogler
11 */
12
13 class GenTopJet : public Particle {
14 public:
15 GenTopJet(){
16 m_subjets.clear();
17 };
18
19 ~GenTopJet(){
20 };
21
22
23 std::vector<Particle> subjets() const{return m_subjets;}
24 void add_subjet(Particle p){m_subjets.push_back(p);}
25
26 private:
27 std::vector<Particle> m_subjets;
28
29 };
30
31 #endif