ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/UHHAnalysis/NtupleWriter/Objects/TopJet.h
Revision: 1.3
Committed: Wed Jun 13 09:38:29 2012 UTC (12 years, 11 months ago) by peiffer
Content type: text/plain
Branch: MAIN
CVS Tags: Feb-15-2013-v1, Feb-14-2013, Feb-07-2013-v1, Jan-17-2013-v2, Jan-17-2013-v1, Jan-16-2012-v1, Jan-09-2012-v2, Jan-09-2012-v1, Dec-26-2012-v1, Dec-20-2012-v1, Dec-17-2012-v1, Dec-05-2012-v1, Nov-30-2012-v3, Nov-30-2012-v2, Nov-30-2012-v1
Changes since 1.2: +5 -0 lines
Log Message:
doxygen info comments

File Contents

# User Rev Content
1 peiffer 1.1 #ifndef TopJet_H
2     #define TopJet_H
3    
4     #include "Jet.h"
5    
6 peiffer 1.3 /**
7     * @short top-jet class
8     * @author Thomas Peiffer
9     */
10    
11 peiffer 1.1 class TopJet : public Jet{
12     public:
13     TopJet(){
14     m_subjets.clear();
15     };
16     ~TopJet(){
17     };
18    
19 peiffer 1.2 std::vector<Particle> subjets() const{return m_subjets;}
20 peiffer 1.1
21     void add_subjet(Particle p){m_subjets.push_back(p);}
22    
23     private:
24     std::vector<Particle> m_subjets;
25    
26     };
27    
28     #endif