ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Muon.h
Revision: 1.1
Committed: Wed Jun 4 09:08:36 2008 UTC (16 years, 11 months ago) by loizides
Content type: text/plain
Branch: MAIN
Log Message:
Added initial data inheritances. Objects are empty.

File Contents

# User Rev Content
1 loizides 1.1 // $Id: Particle.h,v 1.2 2008/06/02 04:43:14 loizides Exp $
2    
3     #ifndef DATATREE_MUON_H
4     #define DATATREE_MUON_H
5    
6     #include "MitAna/DataTree/interface/Lepton.h"
7    
8     //--------------------------------------------------------------------------------------------------
9     //
10     // Muon
11     //
12     // Details to be worked out...
13     //
14     // Authors: C.Loizides, xxx
15     //
16     //--------------------------------------------------------------------------------------------------
17    
18     namespace mithep
19     {
20     class Muon : public Lepton
21     {
22     public:
23     Muon() {}
24     ~Muon() {}
25    
26     ClassDef(Muon, 1) // Muon class
27     };
28    
29     } /*namespace mithep*/
30    
31     #endif /*DATATREE_MUON_H*/