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 <vector>
15#include <string>
16
17// Constructor
19 const std::string& n,
20 const IInterface* p ) :
21base_class(t,n,p) {}
22
23// Athena initialize and finalize
25{
26 // Decide which collections need to be checked for ID TrackParticles
27 ATH_MSG_VERBOSE("initialize() ...");
28 ATH_CHECK( m_inDetSGKey.initialize (m_streamName) );
29 ATH_MSG_INFO("Using " << m_inDetSGKey << " as the source collection for inner detector track particles");
30
31 if (m_LepRMTauKey.key().empty())
32 {
33 ATH_MSG_FATAL("No tau collection provided for thinning.");
34 return StatusCode::FAILURE;
35 }
36 else
37 {
38 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");
39 }
41
42 //tautracks
43 if (m_tauTracksSGKey.key().empty()) {
44 ATH_MSG_FATAL("No tau tracks collection provided for thinning.");
45 return StatusCode::FAILURE;
46 } else {
47 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());
49 }
50
51 // Set up the text-parsing machinery for selectiong the tau directly according to user cuts
52 if (!m_selectionString.empty()) {
53 ATH_CHECK(initializeParser(m_selectionString) );
54 }
55
56 ATH_CHECK(m_originalTauKey.initialize());
57 return StatusCode::SUCCESS;
58}
59
61{
62 ATH_MSG_VERBOSE("finalize() ...");
63 ATH_MSG_INFO("Processed "<< m_ntot_trks <<" tau tracks, "<< m_npass_trks<< " were retained ");
64 ATH_MSG_INFO("Processed "<< m_ntot_ID_trks <<" ID tracks, "<< m_npass_ID_trks<< " were retained ");
65 ATH_MSG_INFO("Processed "<< m_ntot_taus <<" taus, "<< m_npass_taus<< " were retained ");
66 ATH_CHECK( finalizeParser() );
67 return StatusCode::SUCCESS;
68}
69
70// The thinning itself
72{
73 // Retrieve main TrackParticle collection
75 if (!TrackParticles.isValid()) {
76 ATH_MSG_ERROR("No tau collection with name " << m_inDetSGKey.key() << " found in StoreGate!");
77 return StatusCode::FAILURE;
78 }
80 if (!TauTracks.isValid()) {
81 ATH_MSG_ERROR("No tau collection with name " << m_tauTracksSGKey.key() << " found in StoreGate!");
82 return StatusCode::FAILURE;
83 }
85 if (!LepRMTaus.isValid()) {
86 ATH_MSG_ERROR("No tau collection with name " << m_LepRMTauKey.key() << " found in StoreGate!");
87 return StatusCode::FAILURE;
88 }
90 if (!OriTaus.isValid()) {
91 ATH_MSG_ERROR("No tau collection with name " << m_originalTauKey.key() << " found in StoreGate!");
92 return StatusCode::FAILURE;
93 }
94
95 //Thin tauJets_LepRM
96 std::vector<int> tau_kine_mask = m_parser->evaluateAsVector();
97 std::vector<bool> tau_lep_remove_mask(OriTaus->size(), false);
98 static const SG::AuxElement::ConstAccessor<char> acc_modified("ModifiedInAOD");
99 std::transform(LepRMTaus->cbegin(), LepRMTaus->cend(), tau_lep_remove_mask.begin(),
100 [&](auto lep_remove_tau) -> bool {
101 return static_cast<bool>(acc_modified(*lep_remove_tau));
102 }
103 );
104 std::vector<bool> tau_mask(OriTaus->size(),false);
105 std::transform(tau_lep_remove_mask.cbegin(), tau_lep_remove_mask.cend(), tau_kine_mask.cbegin(), tau_mask.begin(),
106 [](auto tau_lep_remove_pass, auto tau_kine_pass) -> bool
107 {
108 return tau_lep_remove_pass == 1 && tau_kine_pass == 1;
109 }
110 );
111
112 std::vector<const xAOD::TauJet*> LepRMTausAfterThinning;
113 std::transform(tau_mask.cbegin(), tau_mask.cend(), LepRMTaus->cbegin(), std::back_inserter(LepRMTausAfterThinning),
114 [](bool mask, auto tau) -> const xAOD::TauJet*
115 {
116 return mask ? tau : nullptr;
117 }
118 );
119 LepRMTausAfterThinning.erase(std::remove(LepRMTausAfterThinning.begin(), LepRMTausAfterThinning.end(), nullptr), LepRMTausAfterThinning.end());
120
121 //Thin TauTrack_LepRM
122 std::vector<bool> tau_track_mask(TauTracks->size(), false);
123 std::vector<bool> id_track_mask(TrackParticles->size(), false);
124 std::for_each(LepRMTausAfterThinning.cbegin(), LepRMTausAfterThinning.cend(),
125 [&](auto tau)
126 {
127 auto tau_track_links = tau->tauTrackLinks();
128 std::for_each(tau_track_links.cbegin(), tau_track_links.cend(),
129 [&](auto link)
130 {
131 if (link.isValid())
132 {
133 tau_track_mask[link.index()] = 1;
134 if (auto id_track_link = (*link)->trackLinks().at(0); id_track_link.isValid())
135 {
136 id_track_mask[id_track_link.index()] = 1;
137 }
138 }
139 }
140 );
141 }
142 );
143
144 LepRMTaus.keep(tau_mask);
145 TauTracks.keep(tau_track_mask);
146 TrackParticles.keep(id_track_mask);
147
148 m_ntot_taus += OriTaus->size();
149 m_ntot_trks += TauTracks->size();
150 m_ntot_ID_trks += TrackParticles->size();
151 m_npass_taus += std::accumulate(tau_mask.begin(), tau_mask.end(),0);
152 m_npass_trks += std::accumulate(tau_track_mask.begin(), tau_track_mask.end(),0);
153 m_npass_ID_trks += std::accumulate(id_track_mask.begin(), id_track_mask.end(),0);
154 ATH_MSG_DEBUG(std::accumulate(tau_mask.begin(), tau_mask.end(),0) << " / " << OriTaus->size() << " taus were retained");
155
156 return StatusCode::SUCCESS;
157
158}
#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
virtual StatusCode doThinning(const EventContext &ctx) const override
SG::ThinningHandleKey< xAOD::TrackParticleContainer > m_inDetSGKey
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".