1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
| // -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/FinalState.hh"
#include "Rivet/Projections/ZFinder.hh"
namespace Rivet {
class D0_2015_I1324946 : public Analysis {
public:
/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(D0_2015_I1324946);
/// @name Analysis methods
//@{
/// Book histograms and initialise projections before the run
void init() {
FinalState fs;
ZFinder zfinder_mm(fs, Cuts::abseta < 2 && Cuts::pT > 15*GeV, PID::MUON, 30*GeV, 500*GeV, 0.0, ZFinder::ClusterPhotons::NONE, ZFinder::AddPhotons::NO);
declare(zfinder_mm, "zfinder_mm");
book(_h_phistar_mm_peak_central, 1, 1, 1);
book(_h_phistar_mm_peak_forward, 2, 1, 1);
book(_h_phistar_mm_low_central, 3, 1, 1);
book(_h_phistar_mm_low_forward, 4, 1, 1);
book(_h_phistar_mm_high1, 5, 1, 1);
book(_h_phistar_mm_high2, 6, 1, 1);
}
/// Perform the per-event analysis
void analyze(const Event& event) {
const double weight = 1.0;
//70<Mmm<105
const ZFinder& zfinder_mm = apply<ZFinder>(event, "zfinder_mm");
if (zfinder_mm.bosons().size() == 1) {
Particles mm = zfinder_mm.constituents();
std::sort(mm.begin(), mm.end(), cmpMomByPt);
const FourMomentum& mminus = PID::charge3(mm[0].pid()) < 0 ? mm[0].momentum() : mm[1].momentum();
const FourMomentum& mplus = PID::charge3(mm[0].pid()) < 0 ? mm[1].momentum() : mm[0].momentum();
double phi_acop = M_PI - mapAngle0ToPi(mminus.phi() - mplus.phi());
double costhetastar = tanh((mminus.eta() - mplus.eta())/2);
double sin2thetastar = 1 - sqr(costhetastar);
if (sin2thetastar < 0) sin2thetastar = 0;
const double phistar = tan(phi_acop/2) * sqrt(sin2thetastar);
const FourMomentum& zmom = zfinder_mm.bosons()[0].momentum();
if (zmom.mass()<30*GeV || zmom.mass() >500*GeV) vetoEvent;
if( zmom.mass()>70 && zmom.mass()<100 && zmom.absrap()<1.0) _h_phistar_mm_peak_central->fill(phistar, weight);
if( zmom.mass()>70 && zmom.mass()<100 && zmom.absrap()>1.0 && zmom.absrap()<2.0) _h_phistar_mm_peak_forward->fill(phistar, weight);
if( zmom.mass()>30 && zmom.mass()<60 && zmom.absrap()<1.0) _h_phistar_mm_low_central->fill(phistar, weight);
if( zmom.mass()>30 && zmom.mass()<60 && zmom.absrap()>1.0 && zmom.absrap()<2.0) _h_phistar_mm_low_forward->fill(phistar, weight);
if( zmom.mass()>160 && zmom.mass()<300) _h_phistar_mm_high1->fill(phistar, weight);
if( zmom.mass()>300 && zmom.mass()<500) _h_phistar_mm_high2->fill(phistar, weight);
}
}
/// Normalise histograms etc., after the run
void finalize() {
normalize(_h_phistar_mm_low_central);
normalize(_h_phistar_mm_low_forward);
normalize(_h_phistar_mm_peak_central);
normalize(_h_phistar_mm_peak_forward);
normalize(_h_phistar_mm_high1);
normalize(_h_phistar_mm_high2);
}
//}
//@}
private:
/// @name Histograms
//@{
Histo1DPtr _h_phistar_mm_low_central;
Histo1DPtr _h_phistar_mm_low_forward;
Histo1DPtr _h_phistar_mm_peak_central;
Histo1DPtr _h_phistar_mm_peak_forward;
Histo1DPtr _h_phistar_mm_high1;
Histo1DPtr _h_phistar_mm_high2;
//@}
};
// The hook for the plugin system
RIVET_DECLARE_PLUGIN(D0_2015_I1324946);
}
|