1 |
//--------------------------------------------------------------------------------------------------
|
2 |
// $Id: Lepton.h,v 1.9 2008/07/01 08:54:57 loizides Exp $
|
3 |
//
|
4 |
// Jet
|
5 |
//
|
6 |
// Details to be worked out...
|
7 |
//
|
8 |
// Authors: C.Loizides
|
9 |
//--------------------------------------------------------------------------------------------------
|
10 |
|
11 |
#ifndef DATATREE_JET_H
|
12 |
#define DATATREE_JET_H
|
13 |
|
14 |
#include "MitAna/DataTree/interface/Particle.h"
|
15 |
#include "MitAna/DataTree/interface/Track.h"
|
16 |
|
17 |
namespace mithep
|
18 |
{
|
19 |
class Jet : public Particle
|
20 |
{
|
21 |
public:
|
22 |
Jet() {}
|
23 |
~Jet() {}
|
24 |
|
25 |
ClassDef(Jet, 1) // Jet class
|
26 |
};
|
27 |
}
|
28 |
#endif
|