ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Electron.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: Electron.h,v 1.3 2008/06/09 11:47:03 paus Exp $
2 bendavid 1.1
3     #ifndef DATATREE_ELECTRON_H
4     #define DATATREE_ELECTRON_H
5    
6     #include "MitAna/DataTree/interface/Lepton.h"
7    
8     //--------------------------------------------------------------------------------------------------
9     //
10 paus 1.3 // Electron
11 bendavid 1.1 //
12     // Details to be worked out...
13     //
14     // Authors: C.Loizides, J. Bendavid
15     //
16     //--------------------------------------------------------------------------------------------------
17    
18     namespace mithep
19     {
20     class Electron : public Lepton
21     {
22     public:
23     Electron() {}
24 bendavid 1.2 Electron(Double_t px, Double_t py, Double_t pz, Double_t e) : Lepton(px,py,pz,e) {}
25 bendavid 1.1 ~Electron() {}
26    
27     ClassDef(Electron, 1) // Muon class
28     };
29 loizides 1.4 }
30     #endif