ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Muon.h
Revision: 1.4
Committed: Wed Jun 11 13:48:37 2008 UTC (16 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.3: +3 -5 lines
Log Message:
Little cleanup

File Contents

# User Rev Content
1 loizides 1.4 // $Id: Muon.h,v 1.3 2008/06/09 00:06:36 bendavid Exp $
2 loizides 1.1
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 bendavid 1.2 // Authors: C.Loizides, J. Bendavid
15 loizides 1.1 //
16     //--------------------------------------------------------------------------------------------------
17    
18     namespace mithep
19     {
20     class Muon : public Lepton
21     {
22     public:
23     Muon() {}
24 bendavid 1.3 Muon(Double_t px, Double_t py, Double_t pz, Double_t e) : Lepton(px,py,pz,e) {}
25 loizides 1.1 ~Muon() {}
26 bendavid 1.2
27 loizides 1.1 ClassDef(Muon, 1) // Muon class
28     };
29 loizides 1.4 }
30     #endif