10 maxNJets_(
cfg.getParameter<
int>(
"maxNJets")),
11 wMass_(
cfg.getParameter<double>(
"wMass")),
12 useBTagging_(
cfg.getParameter<
bool>(
"useBTagging")),
13 bTagAlgorithm_(
cfg.getParameter<
std::
string>(
"bTagAlgorithm")),
14 minBDiscBJets_(
cfg.getParameter<double>(
"minBDiscBJets")),
15 maxBDiscLightJets_(
cfg.getParameter<double>(
"maxBDiscLightJets")) {
18 <<
"It has to be larger than 4 or can be set to -1 to take all jets.";
20 produces<std::vector<std::vector<int> > >();
21 produces<int>(
"NumberOfConsideredJets");
27 std::unique_ptr<std::vector<std::vector<int> > > pOut(
new std::vector<std::vector<int> >);
28 std::unique_ptr<int> pJetsConsidered(
new int);
30 std::vector<int>
match;
31 for (
unsigned int i = 0;
i < 4; ++
i)
43 if (
leps->empty() ||
jets->size() < 4) {
44 pOut->push_back(
match);
46 *pJetsConsidered =
jets->size();
47 evt.
put(
std::move(pJetsConsidered),
"NumberOfConsideredJets");
55 evt.
put(
std::move(pJetsConsidered),
"NumberOfConsideredJets");
57 std::vector<bool> isBJet;
58 std::vector<bool> isLJet;
74 std::vector<int> maxPtIndices;
75 maxPtIndices.push_back(-1);
76 maxPtIndices.push_back(-1);
77 maxPtIndices.push_back(-1);
81 for (
unsigned jdx = (
idx + 1); jdx <
maxNJets; ++jdx) {
82 if (jdx ==
idx || (
useBTagging_ && (!isLJet[jdx] || (cntBJets <= 2 && isBJet[jdx]) ||
83 (cntBJets == 3 && isBJet[
idx] && isBJet[jdx]))))
85 for (
unsigned kdx = 0; kdx <
maxNJets; ++kdx) {
92 maxPtIndices.push_back(
idx);
93 maxPtIndices.push_back(jdx);
94 maxPtIndices.push_back(kdx);
105 std::vector<int> closestToWMassIndices;
106 closestToWMassIndices.push_back(-1);
107 closestToWMassIndices.push_back(-1);
109 for (
unsigned idx = 0;
idx < maxPtIndices.size(); ++
idx) {
110 for (
unsigned jdx = 0; jdx < maxPtIndices.size(); ++jdx) {
111 if (jdx ==
idx || maxPtIndices[
idx] > maxPtIndices[jdx] ||
113 (!isLJet[maxPtIndices[
idx]] || !isLJet[maxPtIndices[jdx]] ||
114 (cntBJets <= 2 && isBJet[maxPtIndices[
idx]]) || (cntBJets <= 2 && isBJet[maxPtIndices[jdx]]) ||
115 (cntBJets == 3 && isBJet[maxPtIndices[
idx]] && isBJet[maxPtIndices[jdx]]))))
118 if (wDist < 0. || wDist > fabs(sum.mass() -
wMass_)) {
119 wDist = fabs(sum.mass() -
wMass_);
120 closestToWMassIndices.clear();
121 closestToWMassIndices.push_back(maxPtIndices[
idx]);
122 closestToWMassIndices.push_back(maxPtIndices[jdx]);
128 for (
unsigned idx = 0;
idx < maxPtIndices.size(); ++
idx) {
130 if (
std::find(closestToWMassIndices.begin(), closestToWMassIndices.end(), maxPtIndices[
idx]) ==
131 closestToWMassIndices.end()) {
132 hadB = maxPtIndices[
idx];
148 if (
std::find(maxPtIndices.begin(), maxPtIndices.end(),
idx) == maxPtIndices.end()) {
162 pOut->push_back(
match);