ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Muon.h
Revision: 1.3
Committed: Mon Jun 9 00:06:36 2008 UTC (16 years, 10 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Changes since 1.2: +2 -3 lines
Log Message:
adherance to coding conventions, reverted ParticleExample, new full chain example

File Contents

# User Rev Content
1 bendavid 1.3 // $Id: Muon.h,v 1.2 2008/06/05 16:03:35 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    
30     } /*namespace mithep*/
31    
32     #endif /*DATATREE_MUON_H*/