ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Met.h
Revision: 1.1
Committed: Mon Jul 7 16:02:25 2008 UTC (16 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
Log Message:
Added Jet and Met. Content needs to be done.

File Contents

# User Rev Content
1 loizides 1.1 //--------------------------------------------------------------------------------------------------
2     // $Id: Lepton.h,v 1.9 2008/07/01 08:54:57 loizides Exp $
3     //
4     // Met
5     //
6     // Details to be worked out...
7     //
8     // Authors: C.Loizides
9     //--------------------------------------------------------------------------------------------------
10    
11     #ifndef DATATREE_MET_H
12     #define DATATREE_MET_H
13    
14     #include "MitAna/DataTree/interface/Particle.h"
15     #include "MitAna/DataTree/interface/Track.h"
16    
17     namespace mithep
18     {
19     class Met : public Particle
20     {
21     public:
22     Met() {}
23     ~Met() {}
24    
25     ClassDef(Met, 1) // Met class
26     };
27     }
28     #endif