ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Electron.h
Revision: 1.3
Committed: Mon Jun 9 11:47:03 2008 UTC (16 years, 10 months ago) by paus
Content type: text/plain
Branch: MAIN
Changes since 1.2: +2 -2 lines
Log Message:
Minor cleanups.

File Contents

# User Rev Content
1 paus 1.3 // $Id: Electron.h,v 1.2 2008/06/09 00:06:36 bendavid 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    
30     } /*namespace mithep*/
31    
32     #endif /*DATATREE_MUON_H*/