ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Electron.h
Revision: 1.7
Committed: Tue Jun 24 14:01:41 2008 UTC (16 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.6: +2 -3 lines
Log Message:
Added Look-ahead event header. Cleanup.

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: Electron.h,v 1.6 2008/06/18 19:08:14 loizides Exp $
3 //
4 // Electron
5 //
6 // Details to be worked out...
7 //
8 // Authors: C.Loizides, J. Bendavid
9 //--------------------------------------------------------------------------------------------------
10
11 #ifndef DATATREE_ELECTRON_H
12 #define DATATREE_ELECTRON_H
13
14 #include "MitAna/DataTree/interface/Lepton.h"
15
16 namespace mithep
17 {
18 class Electron : public Lepton
19 {
20 public:
21 Electron() {}
22 Electron(Double_t px, Double_t py, Double_t pz, Double_t e) : Lepton(px,py,pz,e) {}
23 ~Electron() {}
24
25 ClassDef(Electron, 1) // Electron class
26 };
27 }
28 #endif