ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Electron.h
Revision: 1.1
Committed: Thu Jun 5 16:03:35 2008 UTC (16 years, 11 months ago) by bendavid
Content type: text/plain
Branch: MAIN
Log Message:
added electron class, updated lepton class, added basic functionality for tracks, muons

File Contents

# Content
1 // $Id: Muon.h,v 1.1 2008/06/04 09:08:36 loizides Exp $
2
3 #ifndef DATATREE_ELECTRON_H
4 #define DATATREE_ELECTRON_H
5
6 #include "MitAna/DataTree/interface/Lepton.h"
7
8 //--------------------------------------------------------------------------------------------------
9 //
10 // Muon
11 //
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 ~Electron() {}
25
26 Electron(Double_t x, Double_t y, Double_t z, Double_t t) {fFourVector.SetXYZT(x,y,z,t);}
27
28 ClassDef(Electron, 1) // Muon class
29 };
30
31 } /*namespace mithep*/
32
33 #endif /*DATATREE_MUON_H*/