ATLAS Offline Software
Loading...
Searching...
No Matches
TrigMultiTrkComboHypo.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
5/**************************************************************************
6 **
7 ** File: Trigger/TrigHypothesis/TrigBPhysHypo/TrigMultiTrkComboHypo.cxx
8 **
9 ** Description: multi-track hypothesis algorithm
10 **
11 ** Author: Heather Russell
12 **
13 **************************************************************************/
14
15#include <algorithm>
16#include <numeric>
17
18#include "Constants.h"
20
21#include "xAODMuon/Muon.h"
22#include "xAODEgamma/Electron.h"
30
33
34#include "AthViews/View.h"
35#include "AthViews/ViewHelper.h"
37
38#include "Math/GenVector/VectorUtil.h"
39#include "Math/Vector2D.h"
40
41
46using ROOT::Math::XYVector;
47
48typedef struct PDG20 PDG;
49
50
51namespace {
52
53
54// Break this out into a separate function to avoid some bogus
55// warnings from gcc15.
57bool prev_perm (std::vector<char>& v)
58{
59 return std::ranges::prev_permutation(v).found;;
60}
61
62
63} // anonymous namespace
64
65
66TrigMultiTrkComboHypo::TrigMultiTrkComboHypo(const std::string& name, ISvcLocator* pSvcLocator)
67 : ::ComboHypo(name, pSvcLocator) {}
68
69
71 ATH_MSG_DEBUG( "TrigMultiTrkHypo::initialize()" );
72
74
75 // check consistency of the properties
76 ATH_CHECK( !m_nTrk.empty() );
77
78 if (m_nTrkCharge.empty()) {
79 ATH_MSG_INFO( "totalCharge value is not specified, no charge selection for track combinations will be used" );
80 m_nTrkCharge = std::vector<int>(m_nTrk.size(), -1);
81 }
82
83 if (m_trkMass.empty()) {
84 ATH_MSG_INFO( "trackMasses value is not specified, muon/electron mass will be used" );
85 for (const auto& n : m_nTrk) {
86 m_trkMass.value().emplace_back(std::vector<double>(n, (m_doElectrons ? PDG::mElectron : PDG::mMuon)));
87 }
88 }
89 if (m_trkPt.empty()) {
90 ATH_MSG_INFO( "trackPtThresholds value is not specified" );
91 for (const auto& n : m_nTrk) {
92 m_trkPt.value().emplace_back(std::vector<double>(n, -100.));
93 }
94 }
95 m_trkPtMin = m_trkPt[0].back();
96 for (size_t i = 0; i < m_trkPt.size(); ++i) {
97 m_trkPtMin = std::min(m_trkPtMin, m_trkPt[i].back());
98 }
99
100 ATH_CHECK( m_trkMass.size() == m_nTrk.size() );
101 ATH_CHECK( m_trkPt.size() == m_nTrk.size() );
102
103 for (size_t i = 0; i < m_nTrk.size(); ++i) {
104 ATH_CHECK( m_trkMass[i].size() == m_nTrk[i] );
105 ATH_CHECK( m_trkPt[i].size() == m_nTrk[i] );
106 ATH_CHECK( std::is_sorted(m_trkPt[i].begin(), m_trkPt[i].end(), std::greater<>()) );
107 }
108
109 for (const auto& range : m_massRange.value()) {
110 ATH_CHECK( range.first < range.second );
111 }
112
113 // dump numerical values
114 if (msgLvl(MSG::DEBUG)) {
115 for (size_t i = 0; i < m_nTrk.size(); ++i) {
116 ATH_MSG_DEBUG( "vertex topology: nTrk = " << m_nTrk[i] );
117 for (size_t j = 0; j < m_nTrk[i]; ++j) {
118 ATH_MSG_DEBUG( " " << j + 1 << " trk: mass = " << m_trkMass[i][j] << ", Pt > " << m_trkPt[i][j] );
119 }
120 }
121 msg() << MSG::DEBUG << " mass range: {";
122 for (const auto& range : m_massRange.value()) {
123 msg() << MSG::DEBUG << " { " << range.first << ", " << range.second << " }";
124 }
125 msg() << MSG::DEBUG << " }" << std::endl;
126 }
127
128 if (m_isStreamer) {
129 ATH_MSG_DEBUG( "Configured to run in a streamer mode: no trigger objects will be created" );
130 }
131 if (!m_isStreamer && m_trigLevel != "EF") {
132 ATH_MSG_ERROR( "Could not create trigger objects from tracks or L2 CB muons, use the streamer mode for L2 step" );
133 return StatusCode::FAILURE;
134 }
135
136 ATH_CHECK( !((m_trigLevel == "L2IO" || m_trigLevel == "L2MT") && m_doElectrons) );
137
138 if (m_trigLevel == "L2" || (m_trigLevel == "EF" && m_isMuTrkMode)) {
141 }
142 else if (m_trigLevel == "L2IO" || m_trigLevel == "L2MT" || m_trigLevel == "EF") {
143 ATH_CHECK( m_trackParticleContainerKey.initialize(false) );
144 }
145 else {
146 ATH_MSG_ERROR( "trigLevel should be L2, L2IO, L2MT or EF, but " << m_trigLevel << " provided" );
147 return StatusCode::FAILURE;
148 }
149
150 ATH_CHECK( m_trigBphysContainerKey.initialize(!m_isStreamer.value()) );
151 ATH_CHECK( m_beamSpotKey.initialize(!m_isStreamer.value()) ); // need beamSpot only to create xAOD::TrigBphys object
152
153 ATH_CHECK( m_vertexFitter.retrieve() );
154 ATH_CHECK( m_vertexPointEstimator.retrieve() );
155 ATH_CHECK( m_v0Tools.retrieve() );
156
157 // allowed IDs to filter out incoming decisions at L2 level
158 for (const auto& item : triggerMultiplicityMap()) {
159 const HLT::Identifier id = HLT::Identifier(item.first);
160 m_allowedIDs.insert(id.numeric());
161 if (item.second.size() > 1) {
162 for (size_t i = 0; i < item.second.size(); i++) {
163 m_allowedIDs.insert(TrigCompositeUtils::createLegName(id, i).numeric());
164 }
165 }
166 }
167 if (msgLvl(MSG::DEBUG)) {
168 ATH_MSG_DEBUG( "Allowed decisions:" );
169 for (const DecisionID& id : m_allowedIDs) {
170 ATH_MSG_DEBUG( " +++ " << HLT::Identifier(id) );
171 }
172 }
173 if (m_doElectrons) {
174 for (const DecisionID& id : m_allowedIDs) {
175 std::string name = HLT::Identifier(id).name();
176 bool isMergedElectronChain = false;
177 for (size_t i = 0; i < m_mergedElectronChains.size(); ++i) {
178 if (name.find(m_mergedElectronChains.value().at(i)) != std::string::npos) {
179 isMergedElectronChain = true;
180 break;
181 }
182 }
183 (isMergedElectronChain ? m_mergedElectronIDs.insert(id) : m_resolvedElectronIDs.insert(id));
184 }
185 if (msgLvl(MSG::DEBUG)) {
186 ATH_MSG_DEBUG( "Well-separated electron decisions:" );
187 for (const DecisionID& id : m_resolvedElectronIDs) {
188 ATH_MSG_DEBUG( " +++ " << HLT::Identifier(id) );
189 }
190 ATH_MSG_DEBUG( "Overlapping electron decisions:" );
191 for (const DecisionID& id : m_mergedElectronIDs) {
192 ATH_MSG_DEBUG( " +++ " << HLT::Identifier(id) );
193 }
194 }
195 }
196
197 if (!m_monTool.empty()) {
198 ATH_CHECK( m_monTool.retrieve() );
199 ATH_MSG_DEBUG( "GenericMonitoringTool name:" << m_monTool );
200 }
201 else {
202 ATH_MSG_DEBUG( "No GenericMonitoringTool configured: no monitoring histograms will be available" );
203 }
204
205 return StatusCode::SUCCESS;
206}
207
208
209StatusCode TrigMultiTrkComboHypo::execute(const EventContext& context) const {
210
211 ATH_MSG_DEBUG( "TrigMultiTrkHypo::execute() starts" );
212
213 ATH_MSG_DEBUG( "decision input key: " << decisionsInput().at(0).key() );
214 auto previousDecisionsHandle = SG::makeHandle(decisionsInput().at(0), context);
215 CHECK( previousDecisionsHandle.isValid() );
216 ATH_MSG_DEBUG( "Running with "<< previousDecisionsHandle->size() << " previous decisions" );
217
219
220 const InDet::BeamSpotData* beamSpotData = nullptr;
221 if (!m_isStreamer) {
223 ATH_CHECK( beamSpotHandle.isValid() );
224 beamSpotData = *beamSpotHandle;
225 }
226
227 std::unique_ptr<TrigMultiTrkState<xAOD::MuonContainer>> muonState;
228 std::unique_ptr<TrigMultiTrkState<xAOD::ElectronContainer>> electronState;
229 TrigMultiTrkStateBase* commonState = nullptr;
230 if (m_doElectrons) {
231 electronState = std::make_unique<TrigMultiTrkState<xAOD::ElectronContainer>>(context, *previousDecisionsHandle, *outputDecisionsHandle, nullptr, beamSpotData);
232 commonState = electronState.get();
233 }
234 else {
235 muonState = std::make_unique<TrigMultiTrkState<xAOD::MuonContainer>>(context, *previousDecisionsHandle, *outputDecisionsHandle, nullptr, beamSpotData);
236 commonState = muonState.get();
237 }
238
239 if (m_isStreamer) {
240 if (m_trigLevel == "L2") {
241 ATH_CHECK( mergeTracksFromViews(*commonState) );
242 }
243 else if (m_trigLevel == "L2IO" || m_trigLevel == "L2MT") {
245 }
246 else if (m_trigLevel == "EF") {
248 }
249 ATH_CHECK( filterTrackCombinations(*commonState) );
250 ATH_CHECK( copyDecisionObjects(*commonState) );
251 }
252 else {
253 auto trigBphysHandle = SG::makeHandle(m_trigBphysContainerKey, context);
254 ATH_CHECK( trigBphysHandle.record(std::make_unique<xAOD::TrigBphysContainer>(),
255 std::make_unique<xAOD::TrigBphysAuxContainer>()) );
256 commonState->setTrigBphysCollection(trigBphysHandle.ptr());
257
258 if (m_doElectrons) {
259 ATH_CHECK( mergeLeptonsFromDecisions(*electronState) );
260 ATH_CHECK( findMultiLeptonCandidates(*electronState) );
261 ATH_CHECK( processMergedElectrons(*electronState) );
262 }
263 else if (m_isMuTrkMode) {
264 ATH_CHECK( findMuTrkCandidates(*muonState) );
265 }
266 else {
269 }
270 ATH_CHECK( createDecisionObjects(*commonState) );
271 }
272
273 ATH_MSG_DEBUG( "TrigMultiTrkHypo::execute() terminates with StatusCode::SUCCESS" );
274 return StatusCode::SUCCESS;
275}
276
277
278template<typename T>
280
281 auto& leptons = state.leptons();
282 leptons.clear();
283
284 std::vector<const Decision*> previousDecisions(state.previousDecisions().begin(), state.previousDecisions().end());
285 std::map<const Decision*, int> decisionToInputCollectionIndexMap;
286 for (const auto& decision : previousDecisions) decisionToInputCollectionIndexMap.emplace(decision, 0);
288 for (size_t k = 1; k < decisionsInput().size(); ++k) {
289 auto previousDecisionsHandle = SG::makeHandle(decisionsInput().at(k), state.context());
290 CHECK( previousDecisionsHandle.isValid() );
291 ATH_MSG_DEBUG( "Adding " << previousDecisionsHandle->size() << " decisions from " << decisionsInput().at(k).key() );
292 for (const Decision* decision : *previousDecisionsHandle) {
293 previousDecisions.push_back(decision);
294 decisionToInputCollectionIndexMap.emplace(decision, static_cast<int>(k));
295 }
296 }
297 }
298
299 // all muons/electrons from views are already connected with previous decisions by TrigMuonEFHypoAlg
300 for (const Decision* decision : previousDecisions) {
302
303 ElementLink<T> leptonEL;
304 if (decision->hasObjectLink(TrigCompositeUtils::featureString(), ClassID_traits<T>::ID())) {
305 leptonEL = decision->objectLink<T>(TrigCompositeUtils::featureString());
306 }
307 else {
308 auto leptonLinkInfo = TrigCompositeUtils::findLink<T>(decision, TrigCompositeUtils::featureString(), true);
309 ATH_CHECK( leptonLinkInfo.isValid() );
310 leptonEL = leptonLinkInfo.link;
311 }
312
313 const auto lepton = *leptonEL;
314 if constexpr(std::is_same<T, xAOD::MuonContainer>::value) {
315 if (!lepton->trackParticle(xAOD::Muon::TrackParticleType::CombinedTrackParticle)) continue;
316 if (!lepton->trackParticle(xAOD::Muon::TrackParticleType::InnerDetectorTrackParticle)) continue;
317 }
318 else if constexpr(std::is_same<T, xAOD::ElectronContainer>::value) {
319 if (!lepton->trackParticle()) continue;
320 }
321 else {
322 ATH_MSG_ERROR( "mergeLeptonsFromDecisions(): no scenario for the provided CONTAINER is specified" );
323 return StatusCode::FAILURE;
324 }
325 auto decisionEL = TrigCompositeUtils::decisionToElementLink(decision, state.context());
326
327 auto itr = leptons.end();
329 itr = std::find_if(leptons.begin(), leptons.end(),
330 [this, lepton = lepton](const auto& x){ return this->isIdenticalTracks(lepton, *x.link); });
331 }
332 if (itr == leptons.end()) {
333 leptons.push_back({leptonEL, std::vector<ElementLink<DecisionContainer>>(1, decisionEL), DecisionIDContainer()});
334 }
335 else {
336 (*itr).decisionLinks.push_back(decisionEL);
337 }
338 }
339
340 // muon->pt() is equal to muon->trackParticle(xAOD::Muon::TrackParticleType::CombinedTrackParticle)->pt()
341 // and the later is used by TrigMuonEFHypoTool for classification of muEFCB candidates
342 std::sort(leptons.begin(), leptons.end(), [](const auto& lhs, const auto& rhs){ return ((*lhs.link)->pt() > (*rhs.link)->pt()); });
343
344 // for each muon we extract DecisionIDs stored in the associated Decision objects and copy them at muon.decisionIDs
345 const auto& legToInputCollectionIndexMap = legToInputCollectionMap();
346 for (auto& item : leptons) {
347 for (const ElementLink<xAOD::TrigCompositeContainer>& decisionEL : item.decisionLinks) {
349 auto decisionIndex = decisionToInputCollectionIndexMap[*decisionEL];
350 for (const auto& id : TrigCompositeUtils::decisionIDs(*decisionEL)) {
352 auto legIndex = static_cast<size_t>(TrigCompositeUtils::getIndexFromLeg(id));
353 std::string chain = TrigCompositeUtils::getIDFromLeg(id).name();
354 if (legToInputCollectionIndexMap.at(chain).at(legIndex) == decisionIndex) item.decisionIDs.insert(id);
355 }
356 }
357 else {
358 TrigCompositeUtils::decisionIDs(*decisionEL, item.decisionIDs);
359 }
360 }
361 }
362
363 if (msgLvl(MSG::DEBUG)) {
364 ATH_MSG_DEBUG( "Dump found leptons before vertex fit: " << leptons.size() << " candidates" );
365 for (const auto& item : leptons) {
366 const auto lepton = *item.link;
367 const xAOD::TrackParticle* track;
368 if constexpr(std::is_same<T, xAOD::MuonContainer>::value) {
369 track = lepton->trackParticle(xAOD::Muon::TrackParticleType::InnerDetectorTrackParticle);
370 }
371 else {
372 track = lepton->trackParticle();
373 }
374 ATH_MSG_DEBUG( " -- lepton InDetTrackParticle pt/eta/phi/q: " << track->pt() << " / " << track->eta() << " / " << track->phi() << " / " << track->charge() );
375 ATH_MSG_DEBUG( " lepton pt (muon: CombinedTrackParticle): " << lepton->pt() << " / " << lepton->eta() << " / " << lepton->phi() << " / " << lepton->charge() );
376 ATH_MSG_DEBUG( " allowed decisions:" );
377 for (const DecisionID& id : item.decisionIDs) {
378 ATH_MSG_DEBUG( " +++ " << HLT::Identifier(id) );
379 }
380 }
381 }
382
383 return StatusCode::SUCCESS;
384}
385
386
388
389 auto& tracks = state.tracks();
390 tracks.clear();
391
392 std::set<const SG::View*> views;
393 for (const Decision* decision : state.previousDecisions()) {
394 if (!TrigCompositeUtils::isAnyIDPassing(decision, m_allowedIDs)) continue;
395
397 ATH_CHECK( viewLinkInfo.isValid() );
398 const SG::View* view = *viewLinkInfo.link;
399 if (views.find(view) != views.end()) continue; // tracks from this view have already been fetched
400
401 auto tracksHandle = ViewHelper::makeHandle(view, m_trackParticleContainerKey, state.context());
402 ATH_CHECK( tracksHandle.isValid() );
403 ATH_MSG_DEBUG( "tracks handle " << m_trackParticleContainerKey << " size: " << tracksHandle->size() );
404
405 std::vector<ElementLink<xAOD::TrackParticleContainer>> tracksFromView;
406 tracksFromView.reserve(tracksHandle->size());
407 for (size_t idx = 0; idx < tracksHandle->size(); ++idx) {
408 tracksFromView.emplace_back(ViewHelper::makeLink<xAOD::TrackParticleContainer>(view, tracksHandle, idx));
409 }
410
411 for (const auto& trackEL : tracksFromView) {
412 const xAOD::TrackParticle* track = *trackEL;
413 if (track->definingParametersCovMatrixVec().empty() || track->pt() < m_trkPtMin) continue;
414
415 if (views.empty() || !m_applyOverlapRemoval ||
416 std::find_if(tracks.begin(), tracks.end(),
417 [this, track](const auto& x){ return isIdenticalTracks(track, *x); }) == tracks.end()) {
418 tracks.emplace_back(trackEL);
419 }
420 }
421 views.insert(view);
422 }
423 std::sort(tracks.begin(), tracks.end(), [](const auto& lhs, const auto& rhs){ return ((*lhs)->pt() > (*rhs)->pt()); });
424
425 if (msgLvl(MSG::DEBUG)) {
426 ATH_MSG_DEBUG( "Dump found tracks before vertex fit: " << tracks.size() << " candidates" );
427 for (const auto& trackEL : tracks) {
428 const xAOD::TrackParticle* track = *trackEL;
429 ATH_MSG_DEBUG( " -- track pt/eta/phi/q: " << track->pt() << " / " << track->eta() << " / " << track->phi() << " / " << track->charge() );
430 }
431 }
432
433 return StatusCode::SUCCESS;
434}
435
436
437template<typename CONTAINER>
439
440 auto& tracks = state.tracks();
441 tracks.clear();
442
443 // all muons/electrons from views are already connected with previous decisions by TrigMuonEFHypoAlg or by TrigEgammaPrecisionElectronHypoAlg
444 for (const Decision* decision : state.previousDecisions()) {
445 if (!TrigCompositeUtils::isAnyIDPassing(decision, m_allowedIDs)) continue;
446
448 auto leptonEL = decision->objectLink<CONTAINER>(TrigCompositeUtils::featureString());
449 const auto lepton = *leptonEL;
450
452 if constexpr(std::is_same<CONTAINER, xAOD::MuonContainer>::value) {
453 if (!lepton->trackParticle(xAOD::Muon::TrackParticleType::CombinedTrackParticle)) continue;
454 if (!lepton->trackParticle(xAOD::Muon::TrackParticleType::InnerDetectorTrackParticle)) continue;
455 trackEL = lepton->inDetTrackParticleLink();
456 }
457 else if constexpr(std::is_same<CONTAINER, xAOD::L2CombinedMuonContainer>::value) {
458 if (!lepton->idTrack()) continue;
459 trackEL = lepton->idTrackLink();
460 }
461 else if constexpr(std::is_same<CONTAINER, xAOD::ElectronContainer>::value) {
462 if (!lepton->trackParticle()) continue;
463 trackEL = lepton->trackParticleLink();
464 }
465 else {
466 ATH_MSG_ERROR( "mergeTracksFromDecisions(): no scenario for the provided CONTAINER is specified" );
467 return StatusCode::FAILURE;
468 }
469
470 if (!trackEL.isValid()) continue;
472 std::find_if(tracks.begin(), tracks.end(),
473 [this, track = *trackEL](const auto& x){ return this->isIdenticalTracks(track, *x); }) == tracks.end()) {
474 tracks.emplace_back(trackEL);
475 }
476 }
477 std::sort(tracks.begin(), tracks.end(), [](const auto& lhs, const auto& rhs){ return ((*lhs)->pt() > (*rhs)->pt()); });
478
479 if (msgLvl(MSG::DEBUG)) {
480 ATH_MSG_DEBUG( "Dump found tracks before vertex fit: " << tracks.size() << " candidates" );
481 for (const auto& trackEL : tracks) {
482 const xAOD::TrackParticle* track = *trackEL;
483 ATH_MSG_DEBUG( " -- track pt/eta/phi/q: " << track->pt() << " / " << track->eta() << " / " << track->phi() << " / " << track->charge() );
484 }
485 }
486
487 return StatusCode::SUCCESS;
488}
489
490
492
493 const auto& tracks = state.tracks();
494 state.setEventAccepted(false);
495
496 // monitored variables
497 auto mon_nAcceptedTrk = Monitored::Scalar<int>("nAcceptedTrk", tracks.size());
498 auto mon_nVertexFitterCalls = Monitored::Scalar<int>("nVertexFitterCalls", 0);
499 auto mon_isEventAccepted = Monitored::Scalar<int>("acceptance", 0);
500 auto mon_timer = Monitored::Timer( "TIME_all" );
501
502 auto group = Monitored::Group(m_monTool,
503 mon_nAcceptedTrk, mon_nVertexFitterCalls, mon_isEventAccepted,
504 mon_timer);
505
506 for (size_t iTrk = 0; iTrk < m_nTrk.size(); ++iTrk) {
507 if (state.isEventAccepted()) break;
508 size_t nTrk = m_nTrk[iTrk];
509
510 if (tracks.size() < nTrk) {
511 ATH_MSG_DEBUG( "Could not build a subset of " << nTrk << " tracks from collection which contains only " << tracks.size() << " objects" );
512 continue;
513 }
514 ATH_MSG_DEBUG( "Consider combinations of " << nTrk << " tracks from collection which contains " << tracks.size() << " objects until find a good one" );
515
516 std::vector<ElementLink<xAOD::TrackParticleContainer>> tracklist(nTrk);
517 std::vector<xAOD::TrackParticle::GenVecFourMom_t> p(nTrk);
518
519 // tracks from the current combination will have non-zero value against their position in the 'idx' vector
520 // consider first nTrk tracks as an initial combination, then get the next one with std::prev_permutation()
521 std::vector<char> idx(tracks.size(), 0);
522 std::fill(idx.begin(), idx.begin() + nTrk, 1);
523 do {
524 // fill tracklist and momenta of tracks, also check that the track pT passes the threshold value
525 bool isValidCombination = true;
526 int totalCharge = 0;
527 size_t j = 0;
528 for (size_t i = 0; i < idx.size(); ++i) {
529 if (!idx[i]) continue;
530 const auto& trackEL = tracks[i];
531 tracklist[j] = trackEL;
532 const auto track = *trackEL;
533 p[j] = track->genvecP4();
534 p[j].SetM(m_trkMass[iTrk][j]);
535 totalCharge += static_cast<int>(track->charge());
536 if (p[j].Pt() < m_trkPt[iTrk][j]) {
537 isValidCombination = false;
538 break;
539 }
540 ++j;
541 }
542 if (!isValidCombination || (m_nTrkCharge[iTrk] >= 0 && totalCharge != m_nTrkCharge[iTrk]) || !passedDeltaRcut(p)) continue;
543
544 if (msgLvl(MSG::DEBUG)) {
545 ATH_MSG_DEBUG( "Dump found tracks before vertex fit: pT / eta / phi / charge" );
546 for (size_t i = 0; i < tracklist.size(); ++i) {
547 const auto track = *tracklist[i];
548 ATH_MSG_DEBUG( "track " << i + 1 << ": " << p[i].Pt() << " / " << p[i].Eta() << " / " << p[i].Phi() << " / " << track->charge() );
549 }
550 }
551
552 auto mass = (std::accumulate(p.begin(), p.end(), xAOD::TrackParticle::GenVecFourMom_t())).M();
553 ATH_MSG_DEBUG( "invariant mass: " << mass );
554
555 if (!isInMassRange(mass, iTrk)) continue;
556
557 auto fitterState = m_vertexFitter->makeState(state.context());
558 auto vertex = fit(tracklist, m_trkMass[iTrk], *fitterState);
559 ++mon_nVertexFitterCalls;
560 if (!vertex) continue;
561
562 ATH_MSG_DEBUG( "Filter found a subset of tracks which passed the rough selection: stop looking for other combinations" );
563 state.setEventAccepted(true);
564 break;
565
566 } while (prev_perm(idx));
567 }
568
569 if (!state.isEventAccepted()) {
570 ATH_MSG_DEBUG( "Filter could not find a good subset of tracks" );
571 }
572
573 mon_isEventAccepted = state.isEventAccepted();
574
575 return StatusCode::SUCCESS;
576}
577
578
579template<typename T>
581
582 state.trigBphysLegIndices().clear();
583 const auto& leptons = state.leptons();
584
585 // monitored variables
586 auto mon_nAcceptedTrk = Monitored::Scalar<int>("nAcceptedTrk", leptons.size());
587 auto mon_nCombination = Monitored::Scalar<int>("nCombination", 0);
588 auto mon_nCombinationBeforeFit = Monitored::Scalar<int>("nCombinationBeforeFit", 0);
589 auto mon_nBPhysObject = Monitored::Scalar<int>("nBPhysObject", 0);
590
591 std::vector<float> trkMassBeforeFit;
592 std::vector<float> bphysMass;
593 std::vector<float> d0track1, d0track2;
594 std::vector<float> pttrack1, pttrack2;
595 std::vector<float> etatrack1, etatrack2;
596 std::vector<int> bphysCharge;
597 auto mon_trkMassBeforeFit = Monitored::Collection("trkMassBeforeFit", trkMassBeforeFit);
598 auto mon_bphysChi2 = Monitored::Collection("bphysChi2", state.trigBphysCollection(), &xAOD::TrigBphys::fitchi2);
599 auto mon_bphysLxy = Monitored::Collection("bphysLxy", state.trigBphysCollection(), &xAOD::TrigBphys::lxy);
600 auto mon_bphysFitMass = Monitored::Collection("bphysFitMass", state.trigBphysCollection(), [](const xAOD::TrigBphys* x){ return x->fitmass()*0.001; });
601 auto mon_bphysMass = Monitored::Collection("bphysMass", bphysMass);
602 auto mon_d0track1 = Monitored::Collection("bphysd0_trk1", d0track1);
603 auto mon_d0track2 = Monitored::Collection("bphysd0_trk2", d0track2);
604 auto mon_pttrack1 = Monitored::Collection("bphysPt_trk1", pttrack1);
605 auto mon_pttrack2 = Monitored::Collection("bphysPt_trk2", pttrack2);
606 auto mon_etatrack1 = Monitored::Collection("bphysEtatrack1", etatrack1);
607 auto mon_etatrack2 = Monitored::Collection("bphysEtatrack2", etatrack2);
608 auto mon_bphysCharge = Monitored::Collection("bphysCharge", bphysCharge);
609
610 auto mon_timer = Monitored::Timer( "TIME_all" );
611
612 auto group = Monitored::Group(m_monTool,
613 mon_nAcceptedTrk, mon_nCombination, mon_nCombinationBeforeFit, mon_nBPhysObject,
614 mon_trkMassBeforeFit, mon_bphysChi2, mon_bphysLxy, mon_bphysFitMass, mon_bphysMass, mon_bphysCharge, mon_d0track1, mon_d0track2,
615 mon_timer, mon_pttrack1, mon_pttrack2, mon_etatrack1, mon_etatrack2);
616
617 for (size_t iTrk = 0; iTrk < m_nTrk.size(); ++iTrk) {
618 size_t nTrk = m_nTrk[iTrk];
619
620 if (leptons.size() < nTrk) {
621 ATH_MSG_DEBUG( "Could not build a subset of " << nTrk << " legs from collection which contains only " << leptons.size() << " objects" );
622 continue;
623 }
624 ATH_MSG_DEBUG( "Consider all combinations of " << nTrk << " legs from collection which contains " << leptons.size() << " objects" );
625
626 std::vector<size_t> leptonIndices(nTrk);
627 std::vector<ElementLink<xAOD::TrackParticleContainer>> tracklist(nTrk);
628 std::vector<xAOD::TrackParticle::GenVecFourMom_t> p(nTrk);
629
630 std::vector<char> combination(leptons.size(), 0);
631 std::fill(combination.begin(), combination.begin() + nTrk, 1);
632 do {
633 // fill tracklist and momenta of muons in the current subset
634 bool isValidCombination = true;
635 int charge = 0;
636 size_t j = 0;
637 for (size_t i = 0; i < combination.size(); ++i) {
638 if (!combination[i]) continue;
639 leptonIndices[j] = i;
640 auto leg = *leptons[i].link;
641 charge += static_cast<int>(lround(leg->charge()));
643 if constexpr(std::is_same<T, xAOD::MuonContainer>::value) {
644 trackEL = leg->inDetTrackParticleLink();
645 }
646 else {
647 trackEL = leg->trackParticleLink();
648 }
649 tracklist[j] = trackEL;
651 p[j] = leg->genvecP4();
652 p[j].SetM(0.); // to keep consistency with TrigComboHypoTool::compute()
653 }
654 else {
655 p[j] = (*trackEL)->genvecP4();
656 p[j].SetM(m_trkMass[iTrk][j]);
657 }
658 if (p[j].Pt() < m_trkPt[iTrk][j]) {
659 isValidCombination = false;
660 break;
661 }
662 ++j;
663 }
664 if (!isValidCombination || (m_nTrkCharge[iTrk] >= 0 && charge != m_nTrkCharge[iTrk]) || !passedDeltaRcut(p)) continue;
665
666 if (msgLvl(MSG::DEBUG)) {
667 ATH_MSG_DEBUG( "Dump found leptons before vertex fit: pT / eta / phi / charge" );
668 for (size_t i = 0; i < tracklist.size(); ++i) {
669 const auto track = *tracklist[i];
670 ATH_MSG_DEBUG( "legs " << i + 1 << ": " << p[i].Pt() << " / " << p[i].Eta() << " / " << p[i].Phi() << " / " << track->charge() );
671 }
672 }
673
674 auto mass = (std::accumulate(p.begin(), p.end(), xAOD::TrackParticle::GenVecFourMom_t())).M();
675 ATH_MSG_DEBUG( "invariant mass: " << mass );
676
677 mon_nCombination++;
678 trkMassBeforeFit.push_back(mass * 0.001);
679 if (!isInMassRange(mass, iTrk)) continue;
680
681 mon_nCombinationBeforeFit++;
682 auto fitterState = m_vertexFitter->makeState(state.context());
683 auto vertex = fit(tracklist, m_trkMass[iTrk], *fitterState);
684 if (!vertex) continue;
685 xAOD::TrigBphys* trigBphys = makeTrigBPhys(*vertex, m_trkMass[iTrk], state.beamSpot(), *fitterState);
686 if (m_useLeptonMomentum) trigBphys->setMass(mass);
687 state.addTrigBphysObject(trigBphys, leptonIndices);
688
689 mon_nBPhysObject++;
690 bphysMass.push_back(mass * 0.001);
691 bphysCharge.push_back(charge);
692 d0track1.push_back((*tracklist[0])->d0());
693 d0track2.push_back((*tracklist[1])->d0());
694 pttrack1.push_back((*tracklist[0])->pt() * 0.001);
695 pttrack2.push_back((*tracklist[1])->pt() * 0.001);
696 etatrack1.push_back((*tracklist[0])->eta());
697 etatrack2.push_back((*tracklist[1])->eta());
698
699 } while (prev_perm(combination));
700 }
701 return StatusCode::SUCCESS;
702}
703
704
706
707 ATH_MSG_DEBUG( "Try to find electrons originating from the same EM cluster" );
708
709 // some electrons can be already attached to the list, add electrons from BPH-0DR3-EM7J15 clusters to the end
710 auto& leptons = state.leptons();
711
712 if (m_mergedElectronIDs.empty()) {
713 ATH_MSG_DEBUG( "no chains similar to BPH-0DR3-EM7J15 have been requested, should not look for close-by electrons" );
714 return StatusCode::SUCCESS;
715 }
716
717 const std::vector<double> particleMasses(2, PDG::mElectron);
718
719 for (const Decision* decision : state.previousDecisions()) {
721
722 auto decisionEL = TrigCompositeUtils::decisionToElementLink(decision, state.context());
724 auto electronEL = decision->objectLink<xAOD::ElectronContainer>(TrigCompositeUtils::featureString());
725 const auto electron = *electronEL;
726 if (!electron->trackParticle()) continue;
727
728 // get all electrons from the same SG::View, i.e. from the same initialRoI
729 const auto electronContainer = electronEL.getStorableObjectPointer();
730 if (electronContainer->size() <= 1) continue;
731
732 // add electron from decision to state.leptons
735 leptons.push_back({electronEL, std::vector<ElementLink<DecisionContainer>>(1, decisionEL), decisionIDs});
736
737 // get initialRoI this electron originating from
739 ATH_CHECK( roiInfo.isValid() );
740 auto initialRoI = *roiInfo.link;
741
742 // try to build di-electron pairs: first electron is always from decision, second from the same SG::View
743 std::vector<ElementLink<xAOD::TrackParticleContainer>> tracklist(2);
744 tracklist[0] = electron->trackParticleLink();
745 for (size_t i = 0; i < electronContainer->size(); ++i) {
746 const auto electronFromView = electronContainer->at(i);
747 if (electronFromView == electron) continue;
748 if (!electronFromView->trackParticle()) continue;
749 if (!electronFromView->caloCluster() || electronFromView->caloCluster()->et() < m_caloClusterEtThreshold) continue;
750 tracklist[1] = electronFromView->trackParticleLink();
751
752 auto fitterState = m_vertexFitter->makeState(state.context());
753 auto vertex = fit(tracklist, particleMasses, *fitterState);
754 if (!vertex) continue;
755 xAOD::TrigBphys* trigBphys = makeTrigBPhys(*vertex, particleMasses, state.beamSpot(), *fitterState);
756 trigBphys->setRoiId(initialRoI->roiWord());
757 state.addTrigBphysObject(trigBphys, std::vector<size_t>(1, leptons.size() - 1));
758 }
759 }
760
761 return StatusCode::SUCCESS;
762}
763
764
766
767 ATH_MSG_DEBUG( "Try to find muon + track combinations from the same SG::View" );
768
769 auto& muons = state.leptons();
770 muons.clear();
771
772 const std::vector<double> particleMasses(2, PDG::mMuon);
773
774 for (const Decision* decision : state.previousDecisions()) {
775 if (!TrigCompositeUtils::isAnyIDPassing(decision, m_allowedIDs)) continue;
776
777 auto decisionEL = TrigCompositeUtils::decisionToElementLink(decision, state.context());
779 auto muonEL = decision->objectLink<xAOD::MuonContainer>(TrigCompositeUtils::featureString());
780 const auto muon = *muonEL;
781 if (!muon->trackParticle(xAOD::Muon::TrackParticleType::CombinedTrackParticle)) continue;
782 if (!muon->trackParticle(xAOD::Muon::TrackParticleType::InnerDetectorTrackParticle)) continue;
783 const auto muonInDetTrack = muon->trackParticle(xAOD::Muon::TrackParticleType::InnerDetectorTrackParticle);
784 auto muonMomentum = muonInDetTrack->genvecP4();
785 muonMomentum.SetM(PDG::mMuon);
786
787 // add muon from decision to state.leptons
790 muons.push_back({muonEL, std::vector<ElementLink<DecisionContainer>>(1, decisionEL), decisionIDs});
791
792 ATH_MSG_DEBUG( "Found muon (CombinedTrackParticle): " << muon->pt() << " / " << muon->eta() << " / " << muon->phi() << " / " << muon->charge() );
793
795 ATH_CHECK( viewLinkInfo.isValid() );
796 auto view = *viewLinkInfo.link;
797
798 auto tracksHandle = ViewHelper::makeHandle(view, m_trackParticleContainerKey, state.context());
799 ATH_CHECK( tracksHandle.isValid() );
800 ATH_MSG_DEBUG( "Tracks container " << m_trackParticleContainerKey << " size: " << tracksHandle->size() );
801
802 // try to fit muon and track into common vertex: first track is always muon, second tracks comes from the same SG::View
803 std::vector<ElementLink<xAOD::TrackParticleContainer>> tracklist(2);
804 tracklist[0] = muon->inDetTrackParticleLink();
805 for (size_t idx = 0; idx < tracksHandle->size(); ++idx) {
806 const xAOD::TrackParticle* track = tracksHandle->at(idx);
807
808 if (track->pt() < m_trkPt[0][1] || isIdenticalTracks(track, muonInDetTrack)) continue;
809 auto trackMomentum = track->genvecP4();
810 trackMomentum.SetM(PDG::mMuon);
811 if (!isInMassRange((muonMomentum + trackMomentum).M(), 0)) continue;
812 if (m_nTrkCharge[0] >= 0 && muonInDetTrack->charge() * track->charge() > 0.) continue;
813
814 tracklist[1] = ViewHelper::makeLink<xAOD::TrackParticleContainer>(view, tracksHandle, idx);
815
816 ATH_MSG_DEBUG( "Dump found muon+track pair before vertex fit: pT / eta / phi / charge" << endmsg <<
817 " muon: " << muonMomentum.Pt() << " / " << muonMomentum.Eta() << " / " << muonMomentum.Phi() << " / " << muon->charge() << endmsg <<
818 " track: " << trackMomentum.Pt() << " / " << trackMomentum.Eta() << " / " << trackMomentum.Phi() << " / " << track->charge() );
819
820 auto fitterState = m_vertexFitter->makeState(state.context());
821 auto vertex = fit(tracklist, particleMasses, *fitterState);
822 if (!vertex) continue;
823 xAOD::TrigBphys* trigBphys = makeTrigBPhys(*vertex, particleMasses, state.beamSpot(), *fitterState);
824 // trigBphys->setRoiId(initialRoI->roiWord());
825 state.addTrigBphysObject(trigBphys, std::vector<size_t>(1, muons.size() - 1));
826 }
827 }
828
829 return StatusCode::SUCCESS;
830}
831
832
834
835 if (state.isEventAccepted()) {
836 ATH_MSG_DEBUG( "Copying decisions from " << decisionsInput().at(0).key() << " to " << decisionsOutput().at(0).key() );
837 for (const Decision* previousDecision : state.previousDecisions()) {
838 if (!TrigCompositeUtils::isAnyIDPassing(previousDecision, m_allowedIDs)) continue;
839
840 DecisionIDContainer previousDecisionIDs;
841 TrigCompositeUtils::decisionIDs(previousDecision, previousDecisionIDs);
843 std::set_intersection(previousDecisionIDs.begin(), previousDecisionIDs.end(), m_allowedIDs.begin(), m_allowedIDs.end(),
844 std::inserter(decisionIDs, decisionIDs.begin()));
845
847 TrigCompositeUtils::linkToPrevious(decision, previousDecision, state.context());
849 }
850
851 // copy additional decisions for combined chains, as 'HLT_e9_lhvloose_e5_lhvloose_bBeeM6000_mu4_L1BPH-0M9-EM7-EM5_MU6'
853 }
854 return StatusCode::SUCCESS;
855}
856
857
859
860 size_t idx = 0;
861 for (const xAOD::TrigBphys* triggerObject : state.trigBphysCollection()) {
862 ATH_MSG_DEBUG( "Found xAOD::TrigBphys: mass / chi2 = " << triggerObject->mass() << " / " << triggerObject->fitchi2() );
863
864 auto triggerObjectEL = ElementLink<xAOD::TrigBphysContainer>(state.trigBphysCollection(), triggerObject->index());
865 ATH_CHECK( triggerObjectEL.isValid() );
866
867 // create a new output Decision object, backed by the 'decisions' container.
869
870 std::vector<const DecisionIDContainer*> previousDecisionIDs;
871 for (const size_t& i : state.getTrigBphysLegIndices(idx)) {
872
873 // attach all previous decisions: if the same previous decision is called twice, that's fine - internally takes care of that
874 // we already have an array of links to the previous decisions, so there is no need to use TrigCompositeUtils::linkToPrevious()
876 previousDecisionIDs.push_back(&state.getDecisionIDs(i));
877 }
878
879 // set mandatory feature ElementLink to xAOD::TrigBphys object
881 decision->setDetail<int32_t>("noCombo", 1);
882
883 for (const auto& tool : hypoTools()) {
884 ATH_MSG_DEBUG( "Go to " << tool );
885 if (!m_checkMultiplicity || state.checkMultiplicity(tool->legMultiplicity(), tool->legDecisionIds())) ATH_CHECK( tool->decideOnSingleObject(decision, previousDecisionIDs) );
886 }
887 ++idx;
888 }
889
890 // copy additional decisions from Empty muon step for Combined chains, as 'HLT_e9_lhvloose_e5_lhvloose_bBeeM6000_mu4_L1BPH-0M9-EM7-EM5_MU6'
892
893 return StatusCode::SUCCESS;
894}
895
896
898
899 if (decisionsInput().size() > 1) {
900 ATH_MSG_DEBUG( "Found more than one decision input key, decisionsInput().size = " << decisionsInput().size() );
901 for (size_t i = 1; i < decisionsInput().size(); ++i) {
902 ATH_MSG_DEBUG( "Copying decisions from " << decisionsInput().at(i).key() << " to " << decisionsOutput().at(i).key() );
903 auto previousDecisionsHandle = SG::makeHandle(decisionsInput().at(i), state.context());
904 CHECK( previousDecisionsHandle.isValid() );
905 ATH_MSG_DEBUG( "Running with "<< previousDecisionsHandle->size() << " previous decisions" );
907 for (const Decision* previousDecision : *previousDecisionsHandle) {
908 if (!TrigCompositeUtils::isAnyIDPassing(previousDecision, m_allowedIDs)) continue;
909
910 DecisionIDContainer previousDecisionIDs;
911 TrigCompositeUtils::decisionIDs(previousDecision, previousDecisionIDs);
913 std::set_intersection(previousDecisionIDs.begin(), previousDecisionIDs.end(), m_allowedIDs.begin(), m_allowedIDs.end(),
914 std::inserter(decisionIDs, decisionIDs.begin()));
915
917 TrigCompositeUtils::linkToPrevious(decision, previousDecision, state.context());
919 }
920 }
921 }
922 return StatusCode::SUCCESS;
923}
924
925
926std::unique_ptr<xAOD::Vertex> TrigMultiTrkComboHypo::fit(
927 const std::vector<ElementLink<xAOD::TrackParticleContainer>>& trackParticleLinks,
928 const std::vector<double>& particleMasses,
929 Trk::IVKalState& fitterState) const {
930
931 ATH_MSG_DEBUG( "Perform vertex fit" );
932 std::vector<const xAOD::TrackParticle*> tracklist(trackParticleLinks.size(), nullptr);
933 std::transform(trackParticleLinks.begin(), trackParticleLinks.end(), tracklist.begin(),
934 [](const ElementLink<xAOD::TrackParticleContainer>& link){ return *link; });
935
936 const Trk::Perigee& perigee1 = tracklist[0]->perigeeParameters();
937 const Trk::Perigee& perigee2 = tracklist[1]->perigeeParameters();
938 int flag = 0;
939 int errorcode = 0;
940 Amg::Vector3D startingPoint = m_vertexPointEstimator->getCirclesIntersectionPoint(&perigee1, &perigee2, flag, errorcode);
941 if (errorcode != 0) startingPoint = Amg::Vector3D::Zero(3);
942 ATH_MSG_DEBUG( "Starting point: (" << startingPoint(0) << ", " << startingPoint(1) << ", " << startingPoint(2) << ")" );
943
944 m_vertexFitter->setMassInputParticles(particleMasses, fitterState);
945 std::unique_ptr<xAOD::Vertex> vertex(m_vertexFitter->fit(tracklist, startingPoint, fitterState));
946 if (!vertex) {
947 ATH_MSG_DEBUG( "Vertex fit fails" );
948 return vertex;
949 }
950 if (vertex->chiSquared() > m_chi2) {
951 ATH_MSG_DEBUG( "Fit is successful, but vertex chi2 is too high, we are not going to save it (chi2 = " << vertex->chiSquared() << " > " << m_chi2.value() << ")" );
952 vertex.reset();
953 return vertex;
954 }
955 ATH_MSG_DEBUG( "Fit is successful" );
956 vertex->clearTracks();
957 vertex->setTrackParticleLinks(trackParticleLinks);
958 return vertex;
959}
960
961
963 const xAOD::Vertex& vertex,
964 const std::vector<double>& particleMasses,
965 const xAOD::Vertex& beamSpot,
966 const Trk::IVKalState& fitterState) const {
967
968 double invariantMass = 0.;
969 double invariantMassError = 0.;
970 if (!m_vertexFitter->VKalGetMassError(invariantMass, invariantMassError, fitterState).isSuccess()) {
971 ATH_MSG_DEBUG( "Warning from TrkVKalVrtFitter: can not calculate uncertainties" );
972 invariantMass = -9999.;
973 }
974
976 for (size_t i = 0; i < vertex.nTrackParticles(); ++i) {
977 auto p = vertex.trackParticle(i)->genvecP4();
978 p.SetM(particleMasses[i]);
979 momentum += p;
980 }
981
983 result->makePrivateStore();
984 result->initialise(0, momentum.Eta(), momentum.Phi(), momentum.Pt(), xAOD::TrigBphys::MULTIMU, momentum.M(), xAOD::TrigBphys::EF);
985
986 if (m_doElectrons) result->setParticleType(xAOD::TrigBphys::JPSIEE);
987 result->setFitmass(invariantMass);
988 result->setFitchi2(vertex.chiSquared());
989 result->setFitndof(vertex.numberDoF());
990 result->setFitx(vertex.x());
991 result->setFity(vertex.y());
992 result->setFitz(vertex.z());
993 result->setTrackParticleLinks(vertex.trackParticleLinks());
994 result->setLxy(m_v0Tools->lxy(&vertex, &beamSpot));
995 result->setLxyError(m_v0Tools->lxyError(&vertex, &beamSpot));
996
998 "TrigBphys objects:\n\t " <<
999 "roiId: " << result->roiId() << "\n\t " <<
1000 "particleType: " << result->particleType() << "\n\t " <<
1001 "level: " << result->level() << "\n\t " <<
1002 "eta: " << result->eta() << "\n\t " <<
1003 "phi: " << result->phi() << "\n\t " <<
1004 "mass: " << result->mass() << "\n\t " <<
1005 "fitmass: " << result->fitmass() << "\n\t " <<
1006 "chi2/NDF: " << result->fitchi2() << " / " << result->fitndof() << "\n\t " <<
1007 "vertex: (" << result->fitx() << ", " << result->fity() << ", " << result->fitz() << ")\n\t " <<
1008 "Lxy/LxyError: " << result->lxy() << " / " << result->lxyError() );
1009
1010 return result;
1011}
1012
1013
1015
1016 if (lhs->charge() * rhs->charge() < 0.) return false;
1017 return (ROOT::Math::VectorUtil::DeltaR(lhs->genvecP4(), rhs->genvecP4()) < m_deltaR);
1018}
1019
1020
1021bool TrigMultiTrkComboHypo::isIdenticalTracks(const xAOD::Muon* lhs, const xAOD::Muon* rhs) const {
1022
1024}
1025
1027
1028 return isIdenticalTracks(*lhs->trackParticleLink(), *rhs->trackParticleLink());
1029}
1030
1031
1032bool TrigMultiTrkComboHypo::isInMassRange(double mass, size_t idx) const {
1033
1034 const auto& range = m_massRange[idx];
1035 return (mass > range.first && mass < range.second);
1036}
1037
1038
1039bool TrigMultiTrkComboHypo::passedDeltaRcut(const std::vector<xAOD::TrackParticle::GenVecFourMom_t>& p) const {
1040
1041 if (m_deltaRMax == std::numeric_limits<float>::max() && m_deltaRMin == std::numeric_limits<float>::lowest()) {
1042 return true;
1043 }
1044 for (size_t i = 0; i < p.size(); ++i) {
1045 for (size_t j = i + 1; j < p.size(); ++j) {
1046 double deltaR = ROOT::Math::VectorUtil::DeltaR(p[i], p[j]);
1047 if (deltaR > m_deltaRMax || deltaR < m_deltaRMin) return false;
1048 }
1049 }
1050 return true;
1051}
Scalar eta() const
pseudorapidity method
Scalar deltaR(const MatrixBase< Derived > &vec) const
#define endmsg
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_INFO(x)
#define ATH_MSG_DEBUG(x)
double charge(const T &p)
Definition AtlasPID.h:997
#define CHECK(...)
Evaluate an expression and check for errors.
void decisionIDs(const Decision *d, DecisionIDContainer &id)
Extracts DecisionIDs stored in the Decision object.
@ Phi
Definition RPCdef.h:8
@ Eta
Definition RPCdef.h:8
struct PDG20 PDG
xAOD::ElectronContainer * electronContainer
#define x
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)
bool msgLvl(const MSG::Level lvl) const
ComboHypo(const std::string &name, ISvcLocator *pSvcLocator)
Definition ComboHypo.cxx:13
const SG::WriteHandleKeyArray< TrigCompositeUtils::DecisionContainer > & decisionsOutput() const
Definition ComboHypo.h:42
const Combo::MultiplicityReqMap & triggerMultiplicityMap() const
Definition ComboHypo.h:43
ToolHandleArray< ComboHypoToolBase > & hypoTools()
Definition ComboHypo.h:45
const Combo::LegMap & legToInputCollectionMap() const
Definition ComboHypo.h:44
const SG::ReadHandleKeyArray< TrigCompositeUtils::DecisionContainer > & decisionsInput() const
Definition ComboHypo.h:41
virtual StatusCode initialize() override
Definition ComboHypo.cxx:22
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.
std::string name() const
reports human redable name
TrigCompositeUtils::DecisionContainer & decisions()
void setTrigBphysCollection(xAOD::TrigBphysContainer *trigBphysCollection)
const TrigCompositeUtils::DecisionContainer & previousDecisions() const
const xAOD::Vertex & beamSpot() const
xAOD::TrigBphysContainer & trigBphysCollection()
const EventContext & context() const
Group of local monitoring quantities and retain correlation when filling histograms
Declare a monitored scalar variable.
A monitored timer.
A "view" of the event store (IProxyDict).
Definition View.h:46
pointer_type ptr()
Dereference the pointer.
SG::ReadHandleKey< xAOD::TrackParticleContainer > m_trackParticleContainerKey
StatusCode mergeLeptonsFromDecisions(TrigMultiTrkState< CONTAINER > &) const
Go through state.previousDecisions(), fetch xAOD::Muons/xAODElectron objects attached to decisions an...
Gaudi::Property< bool > m_combineInputDecisionCollections
ToolHandle< GenericMonitoringTool > m_monTool
Gaudi::Property< bool > m_checkMultiplicity
SG::WriteHandleKey< xAOD::TrigBphysContainer > m_trigBphysContainerKey
virtual StatusCode initialize() override
TrigCompositeUtils::DecisionIDContainer m_mergedElectronIDs
Gaudi::Property< float > m_deltaR
xAOD::TrigBphys * makeTrigBPhys(const xAOD::Vertex &vertex, const std::vector< double > &particleMasses, const xAOD::Vertex &beamSpot, const Trk::IVKalState &fitterState) const
Construct the trigger object that may be stored for debugging or matching.
virtual StatusCode execute(const EventContext &context) const override
Gaudi::Property< float > m_chi2
StatusCode findMuTrkCandidates(TrigMultiTrkState< xAOD::MuonContainer > &) const
Build J/psi candidates from muon from SG::View and tracks from the same SG::View, to be used for Tag-...
Gaudi::Property< bool > m_useLeptonMomentum
std::unique_ptr< xAOD::Vertex > fit(const std::vector< ElementLink< xAOD::TrackParticleContainer > > &trackParticleLinks, const std::vector< double > &particleMasses, Trk::IVKalState &fitterState) const
Perform a vertex fit on selected tracks.
bool isInMassRange(double mass, size_t idx) const
Gaudi::Property< std::vector< std::vector< double > > > m_trkMass
Gaudi::Property< std::vector< int > > m_nTrkCharge
ToolHandle< Trk::V0Tools > m_v0Tools
StatusCode filterTrackCombinations(TrigMultiTrkStateBase &) const
Make all possible combinations from state.tracks(), fit tracks to the common vertex and set state....
ToolHandle< InDet::VertexPointEstimator > m_vertexPointEstimator
Gaudi::Property< std::vector< std::vector< double > > > m_trkPt
StatusCode copyAdditionalDecisionObjects(TrigMultiTrkStateBase &) const
For chains from CombinedSlice (similar to 'HLT_e9_lhvloose_e5_lhvloose_bBeeM6000_mu4_L1BPH-0M9-EM7-EM...
Gaudi::Property< std::vector< std::string > > m_mergedElectronChains
TrigCompositeUtils::DecisionIDContainer m_allowedIDs
Gaudi::Property< std::vector< unsigned int > > m_nTrk
Gaudi::Property< bool > m_applyOverlapRemoval
SG::ReadCondHandleKey< InDet::BeamSpotData > m_beamSpotKey
bool isIdenticalTracks(const xAOD::TrackParticle *lhs, const xAOD::TrackParticle *rhs) const
Attempts to identify identical tracks by selection on DeltaR.
bool passedDeltaRcut(const std::vector< xAOD::TrackParticle::GenVecFourMom_t > &momenta) const
Gaudi::Property< bool > m_isStreamer
Gaudi::Property< float > m_deltaRMin
ToolHandle< Trk::TrkVKalVrtFitter > m_vertexFitter
Gaudi::Property< float > m_deltaRMax
Gaudi::Property< std::vector< std::pair< double, double > > > m_massRange
Gaudi::Property< bool > m_doElectrons
StatusCode findMultiLeptonCandidates(TrigMultiTrkState< CONTAINER > &) const
Make all possible combinations from state.leptons(), fit tracks to the common vertex,...
StatusCode copyDecisionObjects(TrigMultiTrkStateBase &) const
All appropriate decisions from state.previousDecisions() will be copied to state.decisions() if flag ...
StatusCode processMergedElectrons(TrigMultiTrkState< xAOD::ElectronContainer > &) const
Make all possible combinations from electrons originating from the same BPH-0DR3-EM7J15 cluster,...
Gaudi::Property< double > m_caloClusterEtThreshold
Gaudi::Property< std::string > m_trigLevel
Gaudi::Property< bool > m_isMuTrkMode
TrigMultiTrkComboHypo()=delete
StatusCode mergeTracksFromViews(TrigMultiTrkStateBase &) const
Go through state.previousDecisions() and fetch xAOD::TrackParticle objects associated with the neares...
StatusCode createDecisionObjects(TrigMultiTrkStateBase &) const
Create a decision for each xAOD::TrigBphys object from state.trigBphysCollection() and save it to sta...
TrigCompositeUtils::DecisionIDContainer m_resolvedElectronIDs
StatusCode mergeTracksFromDecisions(TrigMultiTrkStateBase &) const
Go through state.previousDecisions(), fetch xAOD::Muons/xAODElectron objects attached to decisions an...
virtual bool checkMultiplicity(const std::vector< int > &legMultiplicity, const std::vector< HLT::Identifier > &legDecisionIDs) const =0
std::vector< std::vector< size_t > > & trigBphysLegIndices()
std::vector< ElementLink< xAOD::TrackParticleContainer > > & tracks()
std::vector< size_t > & getTrigBphysLegIndices(size_t idx)
virtual TrigCompositeUtils::DecisionIDContainer & getDecisionIDs(size_t)=0
virtual std::vector< ElementLink< TrigCompositeUtils::DecisionContainer > > & getDecisionLinks(size_t)=0
void setEventAccepted(bool flag=true)
State class for TrigMultiTrkComboHypo algorithm.
std::vector< LEPTON > & leptons()
virtual void addTrigBphysObject(xAOD::TrigBphys *trigBphysObject, const std::vector< size_t > &legIndices) override final
const ElementLink< TrackParticleContainer > & trackParticleLink(size_t index=0) const
ElementLink to the xAOD::TrackParticle/s that match the electron candidate.
const ElementLink< TrackParticleContainer > & inDetTrackParticleLink() const
Returns an ElementLink to the InnerDetector TrackParticle used in identification of this muon.
ROOT::Math::LorentzVector< ROOT::Math::PxPyPzM4D< double > > GenVecFourMom_t
Base 4 Momentum type for TrackParticle.
GenVecFourMom_t genvecP4() const
The full 4-momentum of the particle : GenVector form.
float charge() const
Returns the charge.
void setRoiId(uint32_t id)
set method: roiId
float fitchi2() const
accessor method: chi2 from vertex fit
float lxy() const
accessor method: lxy
void setMass(float)
Set the mass of the object.
bool setObjectLink(const std::string &name, const ElementLink< CONTAINER > &link)
Set the link to an object.
bool setDetail(const std::string &name, const TYPE &value)
Set an TYPE detail on the object.
bool addObjectCollectionLinks(const std::string &collectionName, const std::vector< ElementLink< CONTAINER > > &links)
Add links to multiple objects within a collection. Performs de-duplication.
#define ATH_NOINLINE
Eigen::Matrix< double, 3, 1 > Vector3D
ValuesCollection< T > Collection(std::string name, const T &collection)
Declare a monitored (double-convertible) collection.
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
HLT::Identifier createLegName(const HLT::Identifier &chainIdentifier, size_t counter)
Generate the HLT::Identifier which corresponds to a specific leg of a given chain.
unsigned int DecisionID
const std::string & viewString()
void insertDecisionIDs(const Decision *src, Decision *dest)
Appends the decision IDs of src to the dest decision object.
Decision * newDecisionIn(DecisionContainer *dc, const std::string &name)
Helper method to create a Decision object, place it in the container and return a pointer to it.
const std::string & featureString()
int32_t getIndexFromLeg(const HLT::Identifier &legIdentifier)
Extract the numeric index of a leg identifier.
HLT::Identifier getIDFromLeg(const HLT::Identifier &legIdentifier)
Generate the HLT::Identifier which corresponds to the chain name from the leg name.
bool passed(DecisionID id, const DecisionIDContainer &idSet)
checks if required decision ID is in the set of IDs in the container
const std::string & comboHypoAlgNodeName()
std::set< DecisionID > DecisionIDContainer
SG::WriteHandle< DecisionContainer > createAndStore(const SG::WriteHandleKey< DecisionContainer > &key, const EventContext &ctx)
Creates and right away records the DecisionContainer with the key.
void linkToPrevious(Decision *d, const std::string &previousCollectionKey, size_t previousIndex)
Links to the previous object, location of previous 'seed' decision supplied by hand.
LinkInfo< T > findLink(const Decision *start, const std::string &linkName, const bool suppressMultipleLinksWarning=false)
Perform a recursive search for ElementLinks of type T and name 'linkName', starting from Decision obj...
const std::string & initialRoIString()
const std::string & seedString()
void decisionIDs(const Decision *d, DecisionIDContainer &destination)
Extracts DecisionIDs stored in the Decision object.
bool isAnyIDPassing(const Decision *d, const DecisionIDContainer &required)
Checks if any of the DecisionIDs passed in arg required is availble in Decision object.
ElementLink< DecisionContainer > decisionToElementLink(const Decision *d, const EventContext &ctx)
Takes a raw pointer to a Decision and returns an ElementLink to the Decision.
bool isLegId(const HLT::Identifier &legIdentifier)
Recognise whether the chain ID is a leg ID.
ParametersT< TrackParametersDim, Charged, PerigeeSurface > Perigee
ElementLink< T > makeLink(const SG::View *view, const SG::ReadHandle< T > &handle, size_t index)
Create EL to a collection in view.
Definition ViewHelper.h:309
auto makeHandle(const SG::View *view, const KEY &key, const EventContext &ctx)
Create a view handle from a handle key.
Definition ViewHelper.h:273
void sort(typename DataModel_detail::iterator< DVL > beg, typename DataModel_detail::iterator< DVL > end)
Specialization of sort for DataVector/List.
ElectronContainer_v1 ElectronContainer
Definition of the current "electron container version".
TrigBphys_v1 TrigBphys
Definition TrigBphys.h:18
TrackParticle_v1 TrackParticle
Reference the current persistent version:
Vertex_v1 Vertex
Define the latest version of the vertex class.
Muon_v1 Muon
Reference the current persistent version:
MuonContainer_v1 MuonContainer
Definition of the current "Muon container version".
TrigBphysContainer_v1 TrigBphysContainer
Electron_v1 Electron
Definition of the current "egamma version".