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

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