ATLAS Offline Software
Loading...
Searching...
No Matches
TauJets_LepRMParticleThinning.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
6// TauJets_LepRMParticleThinning.cxx, (c) ATLAS Detector software
8// Author: Dong Qichen (qichen.dong@cern.ch)
9
14#include "GaudiKernel/ThreadLocalContext.h"
15#include <vector>
16#include <string>
17
18// Constructor
20 const std::string& n,
21 const IInterface* p ) :
22base_class(t,n,p) {}
23
24// Athena initialize and finalize
26{
27 // Decide which collections need to be checked for ID TrackParticles
28 ATH_MSG_VERBOSE("initialize() ...");
29 ATH_CHECK( m_inDetSGKey.initialize (m_streamName) );
30 ATH_MSG_INFO("Using " << m_inDetSGKey << " as the source collection for inner detector track particles");
31
32 if (m_LepRMTauKey.key().empty())
33 {
34 ATH_MSG_FATAL("No tau collection provided for thinning.");
35 return StatusCode::FAILURE;
36 }
37 else
38 {
39 ATH_MSG_INFO("Inner detector track particles associated with objects in " << m_LepRMTauKey.key() << " will be retained in this format with the rest being thinned away");
40 }
42
43 //tautracks
44 if (m_tauTracksSGKey.key().empty()) {
45 ATH_MSG_FATAL("No tau tracks collection provided for thinning.");
46 return StatusCode::FAILURE;
47 } else {
48 ATH_MSG_INFO("Tau track thinning requested; tau tracks with the SG key " << m_tauTracksSGKey.key() << " will be thinned if not associated with objects in " << m_LepRMTauKey.key());
50 }
51
52 // Set up the text-parsing machinery for selectiong the tau directly according to user cuts
53 if (!m_selectionString.empty()) {
54 ATH_CHECK(initializeParser(m_selectionString) );
55 }
56
57 ATH_CHECK(m_originalTauKey.initialize());
58 return StatusCode::SUCCESS;
59}
60
62{
63 ATH_MSG_VERBOSE("finalize() ...");
64 ATH_MSG_INFO("Processed "<< m_ntot_trks <<" tau tracks, "<< m_npass_trks<< " were retained ");
65 ATH_MSG_INFO("Processed "<< m_ntot_ID_trks <<" ID tracks, "<< m_npass_ID_trks<< " were retained ");
66 ATH_MSG_INFO("Processed "<< m_ntot_taus <<" taus, "<< m_npass_taus<< " were retained ");
67 ATH_CHECK( finalizeParser() );
68 return StatusCode::SUCCESS;
69}
70
71// The thinning itself
73{
74 const EventContext& ctx = Gaudi::Hive::currentContext();
75 // Retrieve main TrackParticle collection
77 if (!TrackParticles.isValid()) {
78 ATH_MSG_ERROR("No tau collection with name " << m_inDetSGKey.key() << " found in StoreGate!");
79 return StatusCode::FAILURE;
80 }
82 if (!TauTracks.isValid()) {
83 ATH_MSG_ERROR("No tau collection with name " << m_tauTracksSGKey.key() << " found in StoreGate!");
84 return StatusCode::FAILURE;
85 }
87 if (!LepRMTaus.isValid()) {
88 ATH_MSG_ERROR("No tau collection with name " << m_LepRMTauKey.key() << " found in StoreGate!");
89 return StatusCode::FAILURE;
90 }
92 if (!OriTaus.isValid()) {
93 ATH_MSG_ERROR("No tau collection with name " << m_originalTauKey.key() << " found in StoreGate!");
94 return StatusCode::FAILURE;
95 }
96
97 //Thin tauJets_LepRM
98 std::vector<int> tau_kine_mask = m_parser->evaluateAsVector();
99 std::vector<bool> tau_lep_remove_mask(OriTaus->size(), false);
100 static const SG::AuxElement::ConstAccessor<char> acc_modified("ModifiedInAOD");
101 std::transform(LepRMTaus->cbegin(), LepRMTaus->cend(), tau_lep_remove_mask.begin(),
102 [&](auto lep_remove_tau) -> bool {
103 return static_cast<bool>(acc_modified(*lep_remove_tau));
104 }
105 );
106 std::vector<bool> tau_mask(OriTaus->size(),false);
107 std::transform(tau_lep_remove_mask.cbegin(), tau_lep_remove_mask.cend(), tau_kine_mask.cbegin(), tau_mask.begin(),
108 [](auto tau_lep_remove_pass, auto tau_kine_pass) -> bool
109 {
110 return tau_lep_remove_pass == 1 && tau_kine_pass == 1;
111 }
112 );
113
114 std::vector<const xAOD::TauJet*> LepRMTausAfterThinning;
115 std::transform(tau_mask.cbegin(), tau_mask.cend(), LepRMTaus->cbegin(), std::back_inserter(LepRMTausAfterThinning),
116 [](bool mask, auto tau) -> const xAOD::TauJet*
117 {
118 return mask ? tau : nullptr;
119 }
120 );
121 LepRMTausAfterThinning.erase(std::remove(LepRMTausAfterThinning.begin(), LepRMTausAfterThinning.end(), nullptr), LepRMTausAfterThinning.end());
122
123 //Thin TauTrack_LepRM
124 std::vector<bool> tau_track_mask(TauTracks->size(), false);
125 std::vector<bool> id_track_mask(TrackParticles->size(), false);
126 std::for_each(LepRMTausAfterThinning.cbegin(), LepRMTausAfterThinning.cend(),
127 [&](auto tau)
128 {
129 auto tau_track_links = tau->tauTrackLinks();
130 std::for_each(tau_track_links.cbegin(), tau_track_links.cend(),
131 [&](auto link)
132 {
133 if (link.isValid())
134 {
135 tau_track_mask[link.index()] = 1;
136 if (auto id_track_link = (*link)->trackLinks().at(0); id_track_link.isValid())
137 {
138 id_track_mask[id_track_link.index()] = 1;
139 }
140 }
141 }
142 );
143 }
144 );
145
146 LepRMTaus.keep(tau_mask);
147 TauTracks.keep(tau_track_mask);
148 TrackParticles.keep(id_track_mask);
149
150 m_ntot_taus += OriTaus->size();
151 m_ntot_trks += TauTracks->size();
152 m_ntot_ID_trks += TrackParticles->size();
153 m_npass_taus += std::accumulate(tau_mask.begin(), tau_mask.end(),0);
154 m_npass_trks += std::accumulate(tau_track_mask.begin(), tau_track_mask.end(),0);
155 m_npass_ID_trks += std::accumulate(id_track_mask.begin(), id_track_mask.end(),0);
156 ATH_MSG_DEBUG(std::accumulate(tau_mask.begin(), tau_mask.end(),0) << " / " << OriTaus->size() << " taus were retained");
157
158 return StatusCode::SUCCESS;
159
160}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_FATAL(x)
#define ATH_MSG_INFO(x)
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_DEBUG(x)
Handle for requesting thinning for a data object.
TauJets_LepRMParticleThinning(const std::string &t, const std::string &n, const IInterface *p)
SG::ThinningHandleKey< xAOD::TauTrackContainer > m_tauTracksSGKey
SG::ThinningHandleKey< xAOD::TauJetContainer > m_LepRMTauKey
SG::ReadHandleKey< xAOD::TauJetContainer > m_originalTauKey
SG::ThinningHandleKey< xAOD::TrackParticleContainer > m_inDetSGKey
SG::ConstAccessor< T, ALLOC > ConstAccessor
Definition AuxElement.h:569
virtual bool isValid() override final
Can the handle be successfully dereferenced?
Handle for requesting thinning for a data object.
DataModel_detail::iterator< DVL > remove(typename DataModel_detail::iterator< DVL > beg, typename DataModel_detail::iterator< DVL > end, const T &value)
Specialization of remove for DataVector/List.
TauJet_v3 TauJet
Definition of the current "tau version".