ATLAS Offline Software
Loading...
Searching...
No Matches
PixeldEdxTrackParticleThinning.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
6// PixeldEdxTrackParticleThinning.cxx, (c) ATLAS Detector software
8
14#include <vector>
15#include <string>
16
18 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
19 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
20 150, 150, 150, 150, 150, 124.261, 111.448, 97.7357, 85.5616, 72.3294,
21 61.0017, 50.8592, 41.6827, 33.7413, 26.9884, 21.3822, 16.8352, 13.1081, 10.2368, 7.96723,
22 6.23636, 4.91757, 3.91519, 3.15519, 2.57768, 2.13622, 1.80524, 1.53102, 1.30677, 1.13582
23};
24
25// Constructor
27 const std::string& n,
28 const IInterface* p ) :
29 base_class(t, n, p)
30{}
31
32// Athena initialize and finalize
34{
35 ATH_MSG_DEBUG("initialize() ...");
36
37 //check xAOD::InDetTrackParticle collection
39 ATH_MSG_INFO("Using " << m_inDetParticlesKey << "as the source collection for inner detector track particles");
40 ATH_CHECK( m_vertexContainerKey.initialize() );
41 //check availability of xAOD::TrackStateValidation and xAOD::TrackMeasurementValidation containers
42
43 if (!m_selectionString.empty()) {
44 ATH_CHECK(initializeParser(m_selectionString));
45 }
46
47 m_counter.resize(50);
48 m_counter_picked.resize(50);
50
51 if( 0 == m_pTbins.size() ) {
52 for( size_t ip = 0; ip <= 50; ++ip ) {
53 m_pTbins.emplace_back( pow( 10, 2.0 + 0.04 * ip ) );
54 }
55 }
56
58
59 return StatusCode::SUCCESS;
60}
61
63{
64 ATH_MSG_DEBUG("finalize() ...");
65 ATH_MSG_INFO("Processed "<< m_ntot <<" tracks, "<< m_npass<< " were retained ");
66 ATH_CHECK( finalizeParser() );
67 return StatusCode::SUCCESS;
68}
69
70// The thinning itself
72{
73
74 const EventContext& ctx = Gaudi::Hive::currentContext();
75
76 // Retrieve main TrackParticle collection
79
80 // Check the event contains tracks
81 size_t nTracks = importedTrackParticles->size();
82 if (nTracks==0) return StatusCode::SUCCESS;
83
84 // Set up a mask with the same entries as the full TrackParticle collection
85 std::vector<bool> mask;
86 mask.assign(nTracks,false); // default: don't keep any tracks
87
88 std::lock_guard<std::mutex> lock(m_mutex);
89
90 m_ntot += nTracks;
91
92 // Execute the text parser and update the mask
93 if (m_parser) {
94 std::vector<int> entries = m_parser->evaluateAsVector();
95 unsigned int nEntries = entries.size();
96 // check the sizes are compatible
97 if (nTracks != nEntries ) {
98 ATH_MSG_ERROR("Sizes incompatible! Are you sure your selection string used ID TrackParticles?");
99 return StatusCode::FAILURE;
100 } else {
101 // set mask
102 for (unsigned int i=0; i<nTracks; ++i) if (entries[i]==1) mask[i]=true;
103 }
104 }
105
106 // Retrieve vertex collection
108 ATH_CHECK( primaryVertices.isValid() );
109
110 const xAOD::Vertex* priVtx = nullptr;
111
112 for( const auto* vtx : *primaryVertices ) {
113 if( vtx->vertexType() == xAOD::VxType::PriVtx ) {
114 priVtx = vtx;
115 break;
116 }
117 }
118
119 if( !priVtx ) return StatusCode::SUCCESS;
120
121 auto getBin = [&]( const double pT ) -> size_t {
122 for( size_t ip = 0; ip < m_pTbins.size()-1; ip++ ) {
123 if( pT > m_pTbins.at(ip) && pT < m_pTbins.at(ip+1) ) {
124 return ip;
125 }
126 }
127 return 0;
128 };
129
130 // Count the mask
131 for (size_t i=0; i<nTracks; ++i) {
132
133 const auto* trk = importedTrackParticles->at(i);
134
135 // Keep all tracks if IBL is overflow
136 if( trk->numberOfIBLOverflowsdEdx() > 0 ) {
137
138 mask.at(i) = true; ++m_npass; continue;
139
140 }
141
142
143 // Keep all track for pT above 10 GeV
144 if( std::abs( trk->pt() ) > m_unprescalePtCut ) {
145
146 mask.at(i) = true; ++m_npass; continue;
147
148 }
149
150 // Hereafter only low-pT and no-overflow tracks
151
152 // Keep only d0 significancd is small enough
153 if( std::abs( xAOD::TrackingHelpers::d0significance( trk ) ) > m_d0SignifCut ) {
154 continue;
155 }
156
157 // Keep only delta(z0) is less than 10 mm
158 if( std::abs( trk->z0() - priVtx->z() + trk->vz() ) > m_z0Cut ) {
159 continue;
160 }
161
162 // Reject forward low-pT tracks
163 if( std::abs( trk->eta() ) > m_etaCut ) {
164 continue;
165 }
166
167 // Prescaled track keeping
168 auto bin = getBin( std::abs( trk->pt() ) );
169
170 const auto preScale = static_cast<unsigned long long>( std::floor( m_preScales.at( bin ) * m_globalScale ) );
171 const auto preScale10 = std::max( static_cast<unsigned long long>( std::floor( m_preScales.at( bin ) * m_globalScale / 10. ) ), 1ull );
172
173 float dEdx { 0 };
174 trk->summaryValue( dEdx, xAOD::pixeldEdx );
175
176 // Increment the m_counter
177 m_counter.at(bin)++;
178
179 // Relatively higher dE/dx tracks
180 static const float dEdxThr { static_cast<float>(pow( 10, 0.1 )) };
181 if( dEdx > dEdxThr ) {
182
183 mask.at(i) = ( (m_counter.at(bin) % preScale10) == 0 );
184
185 // There are also tracks with dE/dx == -1.
186 } else if( dEdx > 0. ) {
187
188 mask.at(i) = ( (m_counter.at(bin) % preScale) == 0 );
189
190 } else {
191
192 mask.at(i) = false;
193
194 }
195
196 if( mask.back() ) { ++m_npass; m_counter_picked.at(bin)++; }
197
198 }
199
200 assert( importedTrackParticles->size() == mask.size() );
201
202 // Execute the thinning service based on the mask.
203 importedTrackParticles.keep (mask);
204
205 return StatusCode::SUCCESS;
206}
207
#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)
int getBin(double x, double min, double step, int clamp_max)
Handle for requesting thinning for a data object.
constexpr int pow(int base, int exp) noexcept
PixeldEdxTrackParticleThinning(const std::string &t, const std::string &n, const IInterface *p)
SG::ReadHandleKey< xAOD::VertexContainer > m_vertexContainerKey
SG::ThinningHandleKey< xAOD::TrackParticleContainer > m_inDetParticlesKey
virtual bool isValid() override final
Can the handle be successfully dereferenced?
void keep(size_t ndx)
Mark that index ndx in the container should be kept (not thinned away).
Handle for requesting thinning for a data object.
float z() const
Returns the z position.
double entries
Definition listroot.cxx:49
double d0significance(const xAOD::TrackParticle *tp, double d0_uncert_beam_spot_2)
@ PriVtx
Primary vertex.
Vertex_v1 Vertex
Define the latest version of the vertex class.
@ pixeldEdx
the dE/dx estimate, calculated using the pixel clusters [?