rivet is hosted by Hepforge, IPPP Durham
Rivet 3.1.6
SmearedJets.hh
1// -*- C++ -*-
2#ifndef RIVET_SmearedJets_HH
3#define RIVET_SmearedJets_HH
4
5#include "Rivet/Jet.hh"
6#include "Rivet/Particle.hh"
7#include "Rivet/Projection.hh"
8#include "Rivet/Projections/JetAlg.hh"
9#include "Rivet/Tools/SmearingFunctions.hh"
10#include <functional>
11
12namespace Rivet {
13
14
15 // // Recursive variadic template arg decoding
16 // namespace {
17 // template<typename T>
18 // vector<JetEffSmearFn>& toEffSmearFns(vector<JetEffSmearFn>& v, const T& t) {
19 // v.push_back(JetEffSmearFn(t));
20 // return v;
21 // }
22 // template<typename T, typename... ARGS>
23 // vector<JetEffSmearFn>& toEffSmearFns(vector<JetEffSmearFn>& v, const T& first, ARGS... args) {
24 // v.push_back(JetEffSmearFn(first));
25 // toEffSmearFns(v, args...);
26 // return v;
27 // }
28 // }
29
30
32
33
35 class SmearedJets : public JetFinder {
36 public:
37
39
40
45 const JetSmearFn& smearFn,
46 const JetEffFn& bTagEffFn=JET_BTAG_PERFECT,
47 const JetEffFn& cTagEffFn=JET_CTAG_PERFECT)
48 : SmearedJets(ja, vector<JetEffSmearFn>{smearFn}, bTagEffFn, cTagEffFn)
49 { }
50
51
56 const JetEffFn& bTagEffFn=JET_BTAG_PERFECT,
57 const JetEffFn& cTagEffFn=JET_CTAG_PERFECT,
58 const initializer_list<JetEffSmearFn>& effSmearFns={})
59 : SmearedJets(ja, vector<JetEffSmearFn>{effSmearFns}, bTagEffFn, cTagEffFn)
60 { }
61
66 const JetEffFn& bTagEffFn=JET_BTAG_PERFECT,
67 const JetEffFn& cTagEffFn=JET_CTAG_PERFECT,
68 const vector<JetEffSmearFn>& effSmearFns={})
69 : SmearedJets(ja, effSmearFns, bTagEffFn, cTagEffFn)
70 { }
71
72
77 const initializer_list<JetEffSmearFn>& effSmearFns,
78 const JetEffFn& bTagEffFn=JET_BTAG_PERFECT,
79 const JetEffFn& cTagEffFn=JET_CTAG_PERFECT)
80 : SmearedJets(ja, vector<JetEffSmearFn>{effSmearFns}, bTagEffFn, cTagEffFn)
81 { }
82
87 const vector<JetEffSmearFn>& effSmearFns,
88 const JetEffFn& bTagEffFn=JET_BTAG_PERFECT,
89 const JetEffFn& cTagEffFn=JET_CTAG_PERFECT)
90 : _detFns(effSmearFns), _bTagEffFn(bTagEffFn), _cTagEffFn(cTagEffFn)
91 {
92 setName("SmearedJets");
93 declare(ja, "TruthJets");
94 }
95
96
102 const JetSmearFn& smearFn,
103 const JetEffFn& bTagEffFn,
104 const JetEffFn& cTagEffFn,
105 const JetEffFn& jetEffFn)
106 : SmearedJets(ja, {jetEffFn,smearFn}, bTagEffFn, cTagEffFn)
107 { }
108
109
113
114
117
119
120
122 CmpState compare(const Projection& p) const {
123 // Compare truth jets definitions
124 const CmpState teq = mkPCmp(p, "TruthJets");
125 if (teq != CmpState::EQ) return teq;
126
127 // Compare lists of detector functions
128 const SmearedJets& other = dynamic_cast<const SmearedJets&>(p);
129 const CmpState nfeq = cmp(_detFns.size(), other._detFns.size());
130 if (nfeq != CmpState::EQ) return nfeq;
131 for (size_t i = 0; i < _detFns.size(); ++i) {
132 const CmpState feq = _detFns[i].cmp(other._detFns[i]);
133 if (feq != CmpState::EQ) return feq;
134 }
135
136 // If we got this far, we're equal
137 return CmpState::EQ;
138 }
139
140
142 void project(const Event& e) {
143 // Copying and filtering
144 const Jets& truthjets = apply<JetFinder>(e, "TruthJets").jetsByPt(); //truthJets();
145 _recojets.clear(); _recojets.reserve(truthjets.size());
146 // Apply jet smearing and efficiency transforms
147 for (const Jet& j : truthjets) {
148 Jet jdet = j;
149 bool keep = true;
150 MSG_DEBUG("Truth jet: " << "mom=" << jdet.mom()/GeV << " GeV, pT=" << jdet.pT()/GeV << ", eta=" << jdet.eta());
151 for (const JetEffSmearFn& fn : _detFns) {
152 double jeff = -1;
153 std::tie(jdet, jeff) = fn(jdet); // smear & eff
154 // Re-add constituents & tags if (we assume accidentally) they were lost by the smearing function
155 if (jdet.particles().empty() && !j.particles().empty()) jdet.particles() = j.particles();
156 if (jdet.tags().empty() && !j.tags().empty()) jdet.tags() = j.tags();
157 MSG_DEBUG(" ->" << "mom=" << jdet.mom()/GeV << " GeV, pT=" << jdet.pT()/GeV << ", eta=" << jdet.eta());
158 // MSG_DEBUG("New det jet: "
159 // << "mom=" << jdet.mom()/GeV << " GeV, pT=" << jdet.pT()/GeV << ", eta=" << jdet.eta()
160 // << ", b-tag=" << boolalpha << jdet.bTagged()
161 // << ", c-tag=" << boolalpha << jdet.cTagged()
162 // << " : eff=" << 100*jeff << "%");
163 if (jeff <= 0) { keep = false; break; } //< no need to roll expensive dice (and we deal with -ve probabilities, just in case)
164 if (jeff < 1 && rand01() > jeff) { keep = false; break; } //< roll dice (and deal with >1 probabilities, just in case)
165 }
166 if (keep) _recojets.push_back(jdet);
167 }
168 // Apply tagging efficiencies, using smeared kinematics as input to the tag eff functions
169 for (Jet& j : _recojets) {
170 // Decide whether or not there should be a b-tag on this jet
171 const double beff = _bTagEffFn ? _bTagEffFn(j) : j.bTagged();
172 const bool btag = beff == 1 || (beff != 0 && rand01() < beff);
173 // Remove b-tags if needed, and add a dummy one if needed
174 if (!btag && j.bTagged()) j.tags().erase(std::remove_if(j.tags().begin(), j.tags().end(), hasBottom), j.tags().end());
175 if (btag && !j.bTagged()) j.tags().push_back(Particle(PID::BQUARK, j.mom()));
176 // Decide whether or not there should be a c-tag on this jet
177 const double ceff = _cTagEffFn ? _cTagEffFn(j) : j.cTagged();
178 const bool ctag = ceff == 1 || (ceff != 0 && rand01() < beff);
179 // Remove c-tags if needed, and add a dummy one if needed
180 if (!ctag && j.cTagged()) j.tags().erase(std::remove_if(j.tags().begin(), j.tags().end(), hasCharm), j.tags().end());
181 if (ctag && !j.cTagged()) j.tags().push_back(Particle(PID::CQUARK, j.mom()));
182 }
183 }
184
185
187 Jets _jets() const { return _recojets; }
188
190 const Jets truthJets() const {
191 return getProjection<JetFinder>("TruthJets").jetsByPt();
192 }
193
195 void reset() { _recojets.clear(); }
196
197
198 private:
199
201 Jets _recojets;
202
204 vector<JetEffSmearFn> _detFns;
205
207 JetEffFn _bTagEffFn, _cTagEffFn;
208
209 };
210
211
212}
213
214#endif
Representation of a HepMC event, and enabler of Projection caching.
Definition: Event.hh:22
Abstract base class for projections which can return a set of Jets.
Definition: JetFinder.hh:15
size_t size() const
Count the jets.
Definition: JetFinder.hh:160
Representation of a clustered jet of particles.
Definition: Jet.hh:48
Particles & particles()
Get the particles in this jet.
Definition: Jet.hh:77
Particles & tags()
Particles which have been tag-matched to this jet.
Definition: Jet.hh:119
Specialised vector of Jet objects.
Definition: Jet.hh:23
const FourMomentum & mom() const
Get equivalent single momentum four-vector (const) (alias).
Definition: ParticleBase.hh:39
double pT() const
Get the directly (alias).
Definition: ParticleBase.hh:63
double eta() const
Get the directly (alias).
Definition: ParticleBase.hh:87
Particle representation, either from a HepMC::GenEvent or reconstructed.
Definition: Particle.hh:53
const PROJ & declare(const PROJ &proj, const std::string &name)
Register a contained projection (user-facing version)
Definition: ProjectionApplier.hh:170
Base class for all Rivet projections.
Definition: Projection.hh:29
Cmp< Projection > mkPCmp(const Projection &otherparent, const std::string &pname) const
void setName(const std::string &name)
Used by derived classes to set their name.
Definition: Projection.hh:142
Wrapper projection for smearing Jets with detector resolutions and efficiencies.
Definition: SmearedJets.hh:35
DEFAULT_RIVET_PROJ_CLONE(SmearedJets)
Clone on the heap.
void project(const Event &e)
Perform the jet finding & smearing calculation.
Definition: SmearedJets.hh:142
SmearedJets(const JetFinder &ja, const JetEffFn &bTagEffFn=JET_BTAG_PERFECT, const JetEffFn &cTagEffFn=JET_CTAG_PERFECT, const vector< JetEffSmearFn > &effSmearFns={})
Constructor with tagging efficiencies, plus an ordered vector of efficiency and smearing functions.
Definition: SmearedJets.hh:65
SmearedJets(const JetFinder &ja, const JetSmearFn &smearFn, const JetEffFn &bTagEffFn=JET_BTAG_PERFECT, const JetEffFn &cTagEffFn=JET_CTAG_PERFECT)
Constructor with a reco efficiency and optional tagging efficiencies.
Definition: SmearedJets.hh:44
SmearedJets(const JetFinder &ja, const JetSmearFn &smearFn, const JetEffFn &bTagEffFn, const JetEffFn &cTagEffFn, const JetEffFn &jetEffFn)
Constructor with trailing efficiency arg.
Definition: SmearedJets.hh:101
SmearedJets(const JetFinder &ja, const JetEffFn &bTagEffFn=JET_BTAG_PERFECT, const JetEffFn &cTagEffFn=JET_CTAG_PERFECT, const initializer_list< JetEffSmearFn > &effSmearFns={})
Constructor with tagging efficiencies, plus an ordered init-list of efficiency and smearing functions...
Definition: SmearedJets.hh:55
CmpState compare(const Projection &p) const
Compare to another SmearedJets.
Definition: SmearedJets.hh:122
const Jets truthJets() const
Get the truth jets (sorted by pT)
Definition: SmearedJets.hh:190
SmearedJets(const JetFinder &ja, const vector< JetEffSmearFn > &effSmearFns, const JetEffFn &bTagEffFn=JET_BTAG_PERFECT, const JetEffFn &cTagEffFn=JET_CTAG_PERFECT)
Constructor with an ordered vector of efficiency and smearing functions, plus optional tagging effici...
Definition: SmearedJets.hh:86
SmearedJets(const JetFinder &ja, const initializer_list< JetEffSmearFn > &effSmearFns, const JetEffFn &bTagEffFn=JET_BTAG_PERFECT, const JetEffFn &cTagEffFn=JET_CTAG_PERFECT)
Constructor with an ordered init-list of efficiency and smearing functions, plus optional tagging eff...
Definition: SmearedJets.hh:76
void reset()
Reset the projection. Smearing functions will be unchanged.
Definition: SmearedJets.hh:195
#define MSG_DEBUG(x)
Debug messaging, not enabled by default, using MSG_LVL.
Definition: Logging.hh:195
bool hasBottom(int pid)
Does this particle contain a bottom quark?
Definition: ParticleIdUtils.hh:581
bool hasCharm(int pid)
Does this particle contain a charm quark?
Definition: ParticleIdUtils.hh:579
double p(const ParticleBase &p)
Unbound function access to p.
Definition: ParticleBaseUtils.hh:653
double JET_CTAG_PERFECT(const Jet &j)
Return 1 if the given Jet contains a c, otherwise 0.
Definition: JetSmearingFunctions.hh:57
double JET_BTAG_PERFECT(const Jet &j)
Return 1 if the given Jet contains a b, otherwise 0.
Definition: JetSmearingFunctions.hh:53
function< Jet(const Jet &)> JetSmearFn
Typedef for Jet smearing functions/functors.
Definition: JetSmearingFunctions.hh:20
function< double(const Jet &)> JetEffFn
Typedef for Jet efficiency functions/functors.
Definition: JetSmearingFunctions.hh:23
Definition: MC_Cent_pPb.hh:10
double rand01()
Return a uniformly sampled random number between 0 and 1.
Cmp< T > cmp(const T &t1, const T &t2)
Global helper function for easy creation of Cmp objects.
Definition: Cmp.hh:255
Functor for simultaneous efficiency-filtering and smearing of Jets.
Definition: JetSmearingFunctions.hh:94