1 |
loizides |
1.1 |
// $Id: Particle.h,v 1.2 2008/06/02 04:43:14 loizides Exp $
|
2 |
|
|
|
3 |
|
|
#ifndef DATATREE_MUON_H
|
4 |
|
|
#define DATATREE_MUON_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, xxx
|
15 |
|
|
//
|
16 |
|
|
//--------------------------------------------------------------------------------------------------
|
17 |
|
|
|
18 |
|
|
namespace mithep
|
19 |
|
|
{
|
20 |
|
|
class Muon : public Lepton
|
21 |
|
|
{
|
22 |
|
|
public:
|
23 |
|
|
Muon() {}
|
24 |
|
|
~Muon() {}
|
25 |
|
|
|
26 |
|
|
ClassDef(Muon, 1) // Muon class
|
27 |
|
|
};
|
28 |
|
|
|
29 |
|
|
} /*namespace mithep*/
|
30 |
|
|
|
31 |
|
|
#endif /*DATATREE_MUON_H*/
|