ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Electron.h
Revision: 1.6
Committed: Wed Jun 18 19:08:14 2008 UTC (16 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.5: +6 -7 lines
Log Message:
Coding conventions.

File Contents

# User Rev Content
1 bendavid 1.1 //--------------------------------------------------------------------------------------------------
2 loizides 1.6 // $Id: Electron.h,v 1.5 2008/06/17 14:47:16 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    
12 loizides 1.6 #ifndef DATATREE_ELECTRON_H
13     #define DATATREE_ELECTRON_H
14    
15     #include "MitAna/DataTree/interface/Lepton.h"
16    
17 bendavid 1.1 namespace mithep
18     {
19     class Electron : public Lepton
20     {
21     public:
22     Electron() {}
23 bendavid 1.2 Electron(Double_t px, Double_t py, Double_t pz, Double_t e) : Lepton(px,py,pz,e) {}
24 bendavid 1.1 ~Electron() {}
25    
26 loizides 1.5 ClassDef(Electron, 1) // Electron class
27 bendavid 1.1 };
28 loizides 1.4 }
29     #endif