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
|