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#include <cstdint>
17#include <bit> // std::bit_cast
18
19namespace {
20 constexpr uint64_t bits_of(double x) {
21 return std::bit_cast<uint64_t>(x);
22 }
23 constexpr void hash_combine(uint64_t& h, uint64_t x) {
24 h ^= x + 0x9e3779b97f4a7c15ULL + (h << 6) + (h >> 2);
25 }
26 constexpr uint64_t track_keep_hash(uint64_t eventNumber, double d0, double z0,
27 double phi0, double theta, double qOverP) {
29 hash_combine(h, bits_of(d0));
30 hash_combine(h, bits_of(z0));
31 hash_combine(h, bits_of(phi0));
32 hash_combine(h, bits_of(theta));
33 hash_combine(h, bits_of(qOverP));
34 return h;
35 }
36}
37
39 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
40 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
41 150, 150, 150, 150, 150, 124.261, 111.448, 97.7357, 85.5616, 72.3294,
42 61.0017, 50.8592, 41.6827, 33.7413, 26.9884, 21.3822, 16.8352, 13.1081, 10.2368, 7.96723,
43 6.23636, 4.91757, 3.91519, 3.15519, 2.57768, 2.13622, 1.80524, 1.53102, 1.30677, 1.13582
44};
45
46// Constructor
48 const std::string& n,
49 const IInterface* p ) :
50 base_class(t, n, p)
51{}
52
53// Athena initialize and finalize
55{
56 ATH_MSG_DEBUG("initialize() ...");
57
58 //check xAOD::InDetTrackParticle collection
60 ATH_MSG_INFO("Using " << m_inDetParticlesKey << "as the source collection for inner detector track particles");
61 ATH_CHECK( m_vertexContainerKey.initialize() );
62 //check availability of xAOD::TrackStateValidation and xAOD::TrackMeasurementValidation containers
63
64 if (!m_selectionString.empty()) {
65 ATH_CHECK(initializeParser(m_selectionString));
66 }
67
69
70 if( 0 == m_pTbins.size() ) {
71 for( size_t ip = 0; ip <= 50; ++ip ) {
72 m_pTbins.emplace_back( pow( 10, 2.0 + 0.04 * ip ) );
73 }
74 }
75
77
78 return StatusCode::SUCCESS;
79}
80
82{
83 ATH_MSG_DEBUG("finalize() ...");
84 ATH_MSG_INFO("Processed "<< m_ntot <<" tracks, "<< m_npass<< " were retained "
85 << "("<< (m_ntot ? 100.0 * m_npass / m_ntot : 0.0) <<"%)");
86 ATH_CHECK( finalizeParser() );
87 return StatusCode::SUCCESS;
88}
89
90// The thinning itself
92{
93
94
95 // Retrieve main TrackParticle collection
98
99 // Check the event contains tracks
100 size_t nTracks = importedTrackParticles->size();
101 if (nTracks==0) return StatusCode::SUCCESS;
102
103 // Set up a mask with the same entries as the full TrackParticle collection
104 std::vector<bool> mask;
105 mask.assign(nTracks,false); // default: don't keep any tracks
106
107 std::lock_guard<std::mutex> lock(m_mutex);
108
109 m_ntot += nTracks;
110
111 // Execute the text parser and update the mask
112 if (m_parser) {
113 std::vector<int> entries = m_parser->evaluateAsVector();
114 unsigned int nEntries = entries.size();
115 // check the sizes are compatible
116 if (nTracks != nEntries ) {
117 ATH_MSG_ERROR("Sizes incompatible! Are you sure your selection string used ID TrackParticles?");
118 return StatusCode::FAILURE;
119 } else {
120 // set mask
121 for (unsigned int i=0; i<nTracks; ++i) if (entries[i]==1) mask[i]=true;
122 }
123 }
124
125 // Retrieve vertex collection
127 ATH_CHECK( primaryVertices.isValid() );
128
129 const xAOD::Vertex* priVtx = nullptr;
130
131 for( const auto* vtx : *primaryVertices ) {
132 if( vtx->vertexType() == xAOD::VxType::PriVtx ) {
133 priVtx = vtx;
134 break;
135 }
136 }
137
138 if( !priVtx ) return StatusCode::SUCCESS;
139
140 auto getBin = [&]( const double pT ) -> size_t {
141 for( size_t ip = 0; ip < m_pTbins.size()-1; ip++ ) {
142 if( pT > m_pTbins.at(ip) && pT < m_pTbins.at(ip+1) ) {
143 return ip;
144 }
145 }
146 return 0;
147 };
148
149 // Count the mask
150 for (size_t i=0; i<nTracks; ++i) {
151
152 const auto* trk = importedTrackParticles->at(i);
153
154 // Keep all tracks if IBL is overflow
155 if( trk->numberOfIBLOverflowsdEdx() > 0 ) {
156
157 mask.at(i) = true; ++m_npass; continue;
158
159 }
160
161
162 // Keep all track for pT above 10 GeV
163 if( std::abs( trk->pt() ) > m_unprescalePtCut ) {
164
165 mask.at(i) = true; ++m_npass; continue;
166
167 }
168
169 // Hereafter only low-pT and no-overflow tracks
170
171 // Keep only d0 significancd is small enough
172 if( std::abs( xAOD::TrackingHelpers::d0significance( trk ) ) > m_d0SignifCut ) {
173 continue;
174 }
175
176 // Keep only delta(z0) is less than 10 mm
177 if( std::abs( trk->z0() - priVtx->z() + trk->vz() ) > m_z0Cut ) {
178 continue;
179 }
180
181 // Reject forward low-pT tracks
182 if( std::abs( trk->eta() ) > m_etaCut ) {
183 continue;
184 }
185
186 // Prescaled track keeping
187 auto bin = getBin( std::abs( trk->pt() ) );
188
189 const auto preScale = static_cast<unsigned long long>( std::floor( m_preScales.at( bin ) * m_globalScale ) );
190 const auto preScale10 = std::max( static_cast<unsigned long long>( std::floor( m_preScales.at( bin ) * m_globalScale / 10. ) ), 1ull );
191
192 float dEdx { 0 };
193 trk->summaryValue( dEdx, xAOD::pixeldEdx );
194
195 // Order-free per-track keep key: a deterministic hash of the event number and
196 // the track's perigee parameters. Each track is kept with probability ~1/preScale
197 // (statistical prescale, replacing the old exact 1-in-N running-counter keep),
198 // independent of the order tracks are encountered -> reproducible under AthenaMP.
199 const uint64_t keepHash = track_keep_hash(
200 static_cast<uint64_t>( ctx.eventID().event_number() ),
201 trk->d0(), trk->z0(), trk->phi0(), trk->theta(), trk->qOverP() );
202
203 // Relatively higher dE/dx tracks
204 static const float dEdxThr { static_cast<float>(pow( 10, 0.1 )) };
205 if( dEdx > dEdxThr ) {
206
207 mask.at(i) = ( (keepHash % preScale10) == 0 );
208
209 // There are also tracks with dE/dx == -1.
210 } else if( dEdx > 0. ) {
211
212 mask.at(i) = ( (keepHash % preScale) == 0 );
213
214 } else {
215
216 mask.at(i) = false;
217
218 }
219
220 if( mask.back() ) { ++m_npass; }
221
222 }
223
224 assert( importedTrackParticles->size() == mask.size() );
225
226 // Execute the thinning service based on the mask.
227 importedTrackParticles.keep (mask);
228
229 return StatusCode::SUCCESS;
230}
231
Scalar theta() const
theta method
#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)
virtual void lock()=0
Interface to allow an object to lock itself when made const in SG.
Handle for requesting thinning for a data object.
#define x
Header file for AthHistogramAlgorithm.
PixeldEdxTrackParticleThinning(const std::string &t, const std::string &n, const IInterface *p)
SG::ReadHandleKey< xAOD::VertexContainer > m_vertexContainerKey
virtual StatusCode doThinning(const EventContext &ctx) const override
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 [?