1 |
ceballos |
1.1 |
//-------------------
|
2 |
|
|
//
|
3 |
|
|
// Jet Tools
|
4 |
|
|
//
|
5 |
|
|
// S Markson
|
6 |
|
|
//
|
7 |
|
|
//-------------------
|
8 |
|
|
|
9 |
|
|
#ifndef MITPHYSICS_UTILS_JETTOOLS_H
|
10 |
|
|
#define MITPHYSICS_UTILS_JETTOOLS_H
|
11 |
|
|
|
12 |
|
|
#include "MitCommon/MathTools/interface/MathUtils.h"
|
13 |
|
|
#include "MitAna/DataUtil/interface/Debug.h"
|
14 |
|
|
#include "MitAna/DataTree/interface/Names.h"
|
15 |
|
|
#include "MitAna/DataTree/interface/ParticleCol.h"
|
16 |
|
|
#include "MitAna/DataTree/interface/JetCol.h"
|
17 |
|
|
#include "MitAna/DataTree/interface/Jet.h"
|
18 |
|
|
#include "MitPhysics/Init/interface/ModNames.h"
|
19 |
|
|
#include "MitAna/DataCont/interface/ObjArray.h"
|
20 |
|
|
#include "MitAna/DataTree/interface/TrackCol.h"
|
21 |
|
|
#include "MitAna/DataTree/interface/MetCol.h"
|
22 |
|
|
#include <TVector3.h>
|
23 |
|
|
#include <TLorentzVector.h>
|
24 |
|
|
|
25 |
|
|
namespace mithep {
|
26 |
|
|
class JetTools {
|
27 |
|
|
public:
|
28 |
|
|
JetTools();
|
29 |
|
|
virtual ~JetTools();
|
30 |
|
|
|
31 |
|
|
static Double_t NJettiness(const ParticleOArr *particles, const JetOArr *jets, double Y = 0.0);
|
32 |
|
|
static Double_t NJettiness(const TrackOArr *tracks, const JetOArr *jets, double Y = 0.0);
|
33 |
|
|
static Double_t NJettiness(const JetOArr *jetsS, const JetOArr *jets, double Y = 0.0);
|
34 |
|
|
static Double_t M_r(const ParticleOArr *particles);
|
35 |
|
|
static Double_t Beta_r(const ParticleOArr *particles);
|
36 |
|
|
static Double_t M_r_t(const ParticleOArr *particles, const Met *met);
|
37 |
|
|
static Double_t Razor(const ParticleOArr *particles, const Met *met);
|
38 |
|
|
static Double_t CosineOmega(const ParticleOArr *particles);
|
39 |
|
|
static Double_t MtHiggs(const CompositeParticle *dilepton, const Met *met, int nsel);
|
40 |
|
|
|
41 |
|
|
ClassDef(JetTools, 0)
|
42 |
|
|
};
|
43 |
|
|
}
|
44 |
|
|
|
45 |
|
|
#endif
|