1 |
loizides |
1.1 |
//--------------------------------------------------------------------------------------------------
|
2 |
loizides |
1.2 |
// $Id: DecayParticle.h,v 1.1 2008/06/30 16:50:39 loizides Exp $
|
3 |
loizides |
1.1 |
//
|
4 |
|
|
// Decay Particle
|
5 |
|
|
//
|
6 |
|
|
// Details to be worked out...
|
7 |
|
|
//
|
8 |
|
|
// Authors: J.Bendavid...
|
9 |
|
|
//--------------------------------------------------------------------------------------------------
|
10 |
|
|
|
11 |
|
|
#ifndef DATATREE_DECAYPARTICLE_H
|
12 |
|
|
#define DATATREE_DECAYPARTICLE_H
|
13 |
|
|
|
14 |
|
|
#include "MitAna/DataTree/interface/CompositeParticle.h"
|
15 |
|
|
#include "MitAna/DataTree/interface/FitVertex.h"
|
16 |
|
|
|
17 |
|
|
namespace mithep
|
18 |
|
|
{
|
19 |
|
|
class DecayParticle : public CompositeParticle
|
20 |
|
|
{
|
21 |
|
|
public:
|
22 |
loizides |
1.2 |
DecayParticle() {}
|
23 |
loizides |
1.1 |
DecayParticle(Double_t x, Double_t y, Double_t z) : fVertex(x,y,z) {}
|
24 |
loizides |
1.2 |
DecayParticle(Double_t x, Double_t y, Double_t z, Double_t xErr, Double_t yErr, Double_t zErr) :
|
25 |
|
|
fVertex(x,y,z,xErr,yErr,zErr) {}
|
26 |
loizides |
1.1 |
~DecayParticle() {}
|
27 |
|
|
|
28 |
loizides |
1.2 |
const FitVertex &GetVertex() { return fVertex; }
|
29 |
loizides |
1.1 |
|
30 |
|
|
protected:
|
31 |
loizides |
1.2 |
FitVertex fVertex; //reconstructed decay vertex
|
32 |
loizides |
1.1 |
|
33 |
loizides |
1.2 |
ClassDef(DecayParticle, 1) //Decay particle class
|
34 |
loizides |
1.1 |
};
|
35 |
|
|
}
|
36 |
|
|
#endif
|