ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/Utils/interface/DiTauSystem.h
Revision: 1.6
Committed: Thu Dec 11 20:29:35 2008 UTC (16 years, 4 months ago) by ceballos
Content type: text/plain
Branch: MAIN
Changes since 1.5: +5 -5 lines
Log Message:
fix to take into account all changes from Constantin

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: DiTauSystem.h,v 1.5 2008/12/05 09:41:15 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 Particle;
21 class Met;
22
23 class DiTauSystem {
24 public:
25 DiTauSystem(Particle *t1, Particle *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 Particle *fT1; //first tau
40 Particle *fT2; //second tau
41 const 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