CMS 3D CMS Logo

TtSemiLepJetCombMaxSumPtWMass.cc
Go to the documentation of this file.
2 
4 
6 
8  : jetsToken_(consumes<std::vector<pat::Jet> >(cfg.getParameter<edm::InputTag>("jets"))),
9  lepsToken_(consumes<edm::View<reco::RecoCandidate> >(cfg.getParameter<edm::InputTag>("leps"))),
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")) {
16  if (maxNJets_ < 4 && maxNJets_ != -1)
17  throw cms::Exception("WrongConfig") << "Parameter maxNJets can not be set to " << maxNJets_ << ". \n"
18  << "It has to be larger than 4 or can be set to -1 to take all jets.";
19 
20  produces<std::vector<std::vector<int> > >();
21  produces<int>("NumberOfConsideredJets");
22 }
23 
25 
27  std::unique_ptr<std::vector<std::vector<int> > > pOut(new std::vector<std::vector<int> >);
28  std::unique_ptr<int> pJetsConsidered(new int);
29 
30  std::vector<int> match;
31  for (unsigned int i = 0; i < 4; ++i)
32  match.push_back(-1);
33 
34  // get jets
37 
38  // get leptons
41 
42  // skip events without lepton candidate or less than 4 jets or no MET
43  if (leps->empty() || jets->size() < 4) {
44  pOut->push_back(match);
45  evt.put(std::move(pOut));
46  *pJetsConsidered = jets->size();
47  evt.put(std::move(pJetsConsidered), "NumberOfConsideredJets");
48  return;
49  }
50 
51  unsigned maxNJets = maxNJets_;
52  if (maxNJets_ == -1 || (int)jets->size() < maxNJets_)
53  maxNJets = jets->size();
54  *pJetsConsidered = maxNJets;
55  evt.put(std::move(pJetsConsidered), "NumberOfConsideredJets");
56 
57  std::vector<bool> isBJet;
58  std::vector<bool> isLJet;
59  int cntBJets = 0;
60  if (useBTagging_) {
61  for (unsigned int idx = 0; idx < maxNJets; ++idx) {
62  isBJet.push_back(((*jets)[idx].bDiscriminator(bTagAlgorithm_) > minBDiscBJets_));
63  isLJet.push_back(((*jets)[idx].bDiscriminator(bTagAlgorithm_) < maxBDiscLightJets_));
64  if ((*jets)[idx].bDiscriminator(bTagAlgorithm_) > minBDiscBJets_)
65  cntBJets++;
66  }
67  }
68 
69  // -----------------------------------------------------
70  // associate those jets with maximum pt of the vectorial
71  // sum to the hadronic decay chain
72  // -----------------------------------------------------
73  double maxPt = -1.;
74  std::vector<int> maxPtIndices;
75  maxPtIndices.push_back(-1);
76  maxPtIndices.push_back(-1);
77  maxPtIndices.push_back(-1);
78  for (unsigned idx = 0; idx < maxNJets; ++idx) {
79  if (useBTagging_ && (!isLJet[idx] || (cntBJets <= 2 && isBJet[idx])))
80  continue;
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]))))
84  continue;
85  for (unsigned kdx = 0; kdx < maxNJets; ++kdx) {
86  if (kdx == idx || kdx == jdx || (useBTagging_ && !isBJet[kdx]))
87  continue;
88  reco::Particle::LorentzVector sum = (*jets)[idx].p4() + (*jets)[jdx].p4() + (*jets)[kdx].p4();
89  if (maxPt < 0. || maxPt < sum.pt()) {
90  maxPt = sum.pt();
91  maxPtIndices.clear();
92  maxPtIndices.push_back(idx);
93  maxPtIndices.push_back(jdx);
94  maxPtIndices.push_back(kdx);
95  }
96  }
97  }
98  }
99 
100  // -----------------------------------------------------
101  // associate those jets that get closest to the W mass
102  // with their invariant mass to the W boson
103  // -----------------------------------------------------
104  double wDist = -1.;
105  std::vector<int> closestToWMassIndices;
106  closestToWMassIndices.push_back(-1);
107  closestToWMassIndices.push_back(-1);
108  if (isValid(maxPtIndices[0], jets) && isValid(maxPtIndices[1], jets) && isValid(maxPtIndices[2], jets)) {
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] ||
112  (useBTagging_ &&
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]]))))
116  continue;
117  reco::Particle::LorentzVector sum = (*jets)[maxPtIndices[idx]].p4() + (*jets)[maxPtIndices[jdx]].p4();
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]);
123  }
124  }
125  }
126  }
127  int hadB = -1;
128  for (unsigned idx = 0; idx < maxPtIndices.size(); ++idx) {
129  // if this idx is not yet contained in the list of W mass candidates...
130  if (std::find(closestToWMassIndices.begin(), closestToWMassIndices.end(), maxPtIndices[idx]) ==
131  closestToWMassIndices.end()) {
132  hadB = maxPtIndices[idx];
133  break; // there should be no other cadidates!
134  }
135  }
136 
137  // -----------------------------------------------------
138  // associate the remaining jet with maximum pt of the
139  // vectorial sum with the leading lepton with the
140  // leptonic decay chain
141  // -----------------------------------------------------
142  maxPt = -1.;
143  int lepB = -1;
144  for (unsigned idx = 0; idx < maxNJets; ++idx) {
145  if (useBTagging_ && !isBJet[idx])
146  continue;
147  // make sure it's not used up already from the hadronic decay chain
148  if (std::find(maxPtIndices.begin(), maxPtIndices.end(), idx) == maxPtIndices.end()) {
149  reco::Particle::LorentzVector sum = (*jets)[idx].p4() + (*leps)[0].p4();
150  if (maxPt < 0. || maxPt < sum.pt()) {
151  maxPt = sum.pt();
152  lepB = idx;
153  }
154  }
155  }
156 
157  match[TtSemiLepEvtPartons::LightQ] = closestToWMassIndices[0];
158  match[TtSemiLepEvtPartons::LightQBar] = closestToWMassIndices[1];
161 
162  pOut->push_back(match);
163  evt.put(std::move(pOut));
164 }
electrons_cff.bool
bool
Definition: electrons_cff.py:393
mps_fire.i
i
Definition: mps_fire.py:428
TtSemiLepEvtPartons::LightQBar
Definition: TtSemiLepEvtPartons.h:25
sistrip::View
View
Definition: ConstantsForView.h:26
TtSemiLepJetCombMaxSumPtWMass::isValid
bool isValid(const int &idx, const edm::Handle< std::vector< pat::Jet > > &jets)
Definition: TtSemiLepJetCombMaxSumPtWMass.h:19
TtSemiLepEvtPartons::LepB
Definition: TtSemiLepEvtPartons.h:25
edm
HLT enums.
Definition: AlignableModifier.h:19
TtSemiLepJetCombMaxSumPtWMass::bTagAlgorithm_
std::string bTagAlgorithm_
Definition: TtSemiLepJetCombMaxSumPtWMass.h:28
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89353
TtSemiLepJetCombMaxSumPtWMass::jetsToken_
edm::EDGetTokenT< std::vector< pat::Jet > > jetsToken_
Definition: TtSemiLepJetCombMaxSumPtWMass.h:21
singleTopDQM_cfi.jets
jets
Definition: singleTopDQM_cfi.py:42
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
TtSemiLepEvtPartons.h
spr::find
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
edm::Handle
Definition: AssociativeIterator.h:50
singleTopDQM_cfi.setup
setup
Definition: singleTopDQM_cfi.py:37
reco::Particle::LorentzVector
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Particle.h:21
heavyIonCSV_trainingSettings.idx
idx
Definition: heavyIonCSV_trainingSettings.py:5
TtSemiLepJetCombMaxSumPtWMass::minBDiscBJets_
double minBDiscBJets_
Definition: TtSemiLepJetCombMaxSumPtWMass.h:29
TtSemiLepHitFitProducer_Electrons_cfi.leps
leps
Definition: TtSemiLepHitFitProducer_Electrons_cfi.py:5
MuonErrorMatrixAnalyzer_cfi.maxPt
maxPt
Definition: MuonErrorMatrixAnalyzer_cfi.py:19
TtSemiLepJetCombMaxSumPtWMass::lepsToken_
edm::EDGetTokenT< edm::View< reco::RecoCandidate > > lepsToken_
Definition: TtSemiLepJetCombMaxSumPtWMass.h:24
Jet
Definition: Jet.py:1
edm::Event::getByToken
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:531
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
TtSemiLepJetCombMaxSumPtWMass::maxNJets_
int maxNJets_
Definition: TtSemiLepJetCombMaxSumPtWMass.h:25
TtSemiLepJetCombMaxSumPtWMass::produce
void produce(edm::Event &evt, const edm::EventSetup &setup) override
Definition: TtSemiLepJetCombMaxSumPtWMass.cc:26
TtSemiLepJetCombMaxSumPtWMass::wMass_
double wMass_
Definition: TtSemiLepJetCombMaxSumPtWMass.h:26
edm::ParameterSet
Definition: ParameterSet.h:47
TtSemiLepEvtPartons::HadB
Definition: TtSemiLepEvtPartons.h:25
match
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
TtSemiLepEvtPartons::LightQ
Definition: TtSemiLepEvtPartons.h:25
createfilelist.int
int
Definition: createfilelist.py:10
SUSYDQMAnalyzer_cfi.maxNJets
maxNJets
Definition: SUSYDQMAnalyzer_cfi.py:13
edm::Event::put
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
trackerHitRTTI::vector
Definition: trackerHitRTTI.h:21
edm::EventSetup
Definition: EventSetup.h:57
pat
Definition: HeavyIon.h:7
TtSemiLepJetCombMaxSumPtWMass::TtSemiLepJetCombMaxSumPtWMass
TtSemiLepJetCombMaxSumPtWMass(const edm::ParameterSet &)
Definition: TtSemiLepJetCombMaxSumPtWMass.cc:7
looper.cfg
cfg
Definition: looper.py:297
TtSemiLepJetCombMaxSumPtWMass.h
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
Exception
Definition: hltDiff.cc:246
TtSemiLepJetCombMaxSumPtWMass::maxBDiscLightJets_
double maxBDiscLightJets_
Definition: TtSemiLepJetCombMaxSumPtWMass.h:30
TtSemiLepJetCombMaxSumPtWMass::useBTagging_
bool useBTagging_
Definition: TtSemiLepJetCombMaxSumPtWMass.h:27
ParameterSet.h
edm::Event
Definition: Event.h:73
TtSemiLepJetCombMaxSumPtWMass::~TtSemiLepJetCombMaxSumPtWMass
~TtSemiLepJetCombMaxSumPtWMass() override
Definition: TtSemiLepJetCombMaxSumPtWMass.cc:24