1 |
//--------------------------------------------------------------------------------------------------
|
2 |
// $Id: DiTauSystem.h,v 1.3 2008/11/28 10:46:28 ceballos Exp $
|
3 |
//
|
4 |
// DiTauSystem
|
5 |
//
|
6 |
// Class to calculate the mass to the di-tau system. It is assumed that the tau is boosted
|
7 |
// and that the neutrinos have the same flight direction as the tau.
|
8 |
// CMS note 2006/082
|
9 |
//
|
10 |
// Authors: G.Ceballos
|
11 |
//--------------------------------------------------------------------------------------------------
|
12 |
|
13 |
#ifndef MITPHYSICS_UTILS_DITAUSYSTEM_H
|
14 |
#define MITPHYSICS_UTILS_DITAUSYSTEM_H
|
15 |
|
16 |
#include <Rtypes.h>
|
17 |
|
18 |
namespace mithep
|
19 |
{
|
20 |
class ChargedParticle;
|
21 |
class Met;
|
22 |
|
23 |
class DiTauSystem {
|
24 |
public:
|
25 |
DiTauSystem(ChargedParticle *t1, ChargedParticle *t2, const Met *met);
|
26 |
~DiTauSystem() {}
|
27 |
|
28 |
Double_t RecoMass() const { return fRecoMass;}
|
29 |
Double_t TransverseMass() const { return fMT; }
|
30 |
Double_t TransverseEll() const { return fETll; }
|
31 |
Double_t TransverseEnn() const { return fETnn; }
|
32 |
Double_t VisMass() const { return fVisMass; }
|
33 |
Double_t XTau1() const { return fXTau[0]; }
|
34 |
Double_t XTau2() const { return fXTau[1]; }
|
35 |
|
36 |
private:
|
37 |
void Init();
|
38 |
|
39 |
ChargedParticle *fT1; //first tau
|
40 |
ChargedParticle *fT2; //second tau
|
41 |
Met *fMet; //missing et
|
42 |
Double_t fXTau[2]; //visible fraction of the tau momenta
|
43 |
Double_t fRecoMass; //higgs mass
|
44 |
Double_t fVisMass; //visible mass
|
45 |
Double_t fMT; //transverse visible mass
|
46 |
Double_t fETll; //transverse energy of tau products
|
47 |
Double_t fETnn; //transverse missing energy
|
48 |
};
|
49 |
}
|
50 |
#endif
|