1 |
loizides |
1.1 |
// $Id:$
|
2 |
|
|
|
3 |
|
|
#ifndef DATATREE_PARTICLE_H
|
4 |
|
|
#define DATATREE_PARTICLE_H
|
5 |
|
|
|
6 |
|
|
#include "MitAna/DataTree/interface/Types.h"
|
7 |
|
|
#include <TObject.h>
|
8 |
|
|
|
9 |
|
|
//--------------------------------------------------------------------------------------------------
|
10 |
|
|
//
|
11 |
|
|
// Particle
|
12 |
|
|
//
|
13 |
|
|
// Details to be worked out...
|
14 |
|
|
//
|
15 |
|
|
// Authors: C.Loizides, xxx
|
16 |
|
|
//
|
17 |
|
|
//--------------------------------------------------------------------------------------------------
|
18 |
|
|
|
19 |
|
|
namespace mithep
|
20 |
|
|
{
|
21 |
|
|
class Particle : public FourVector
|
22 |
|
|
{
|
23 |
|
|
public:
|
24 |
|
|
Particle() {}
|
25 |
|
|
virtual ~Particle() {}
|
26 |
|
|
|
27 |
|
|
Particle(double x, double y, double z, double t) {
|
28 |
|
|
SetPxPyPzE(x,y,z,t);
|
29 |
|
|
}
|
30 |
|
|
|
31 |
|
|
ClassDef(Particle, 1) // Particle class
|
32 |
|
|
};
|
33 |
|
|
|
34 |
|
|
} /*namespace mithep*/
|
35 |
|
|
|
36 |
|
|
#endif /*DATATREE_PARTICLE_H*/
|