ATLAS Offline Software
Loading...
Searching...
No Matches
DerivationFramework::TrackParticleThinningBase Class Reference

#include <TrackParticleThinningBase.h>

Inheritance diagram for DerivationFramework::TrackParticleThinningBase:
Collaboration diagram for DerivationFramework::TrackParticleThinningBase:

Public Member Functions

virtual StatusCode initialize () override
virtual StatusCode finalize () override final
virtual StatusCode doThinning (const EventContext &ctx) const override final

Protected Member Functions

virtual std::vector< int > updateMask (const xAOD::TrackParticleContainer *) const

Private Types

enum  MeasurementType {
  TrkState_unidentified = 0 , TrkState_Pixel = 1 , TrkState_SCT = 2 , TrkState_TRT = 3 ,
  TrkState_Pseudo = 8 , TrkState_Vertex = 9 , TrkState_SpacePoint = 11 , TrkState_NumberOfMeasurementTypes =16
}

Private Member Functions

void selectTrackHits (const xAOD::TrackParticleContainer &inputTrackParticles, const std::vector< bool > &inputMask, MeasurementType detTypeToSelect, std::vector< bool > &outputStatesMask, std::vector< bool > &outputMeasurementsMask) const
 Select TrackStateValidation and TrackMeasurementValidation objects that are used in the (thinned) track container.
void filterTrackHits (const EventContext &ctx, MeasurementType detTypeToSelect, const xAOD::TrackParticleContainer &inputTrackParticles, const std::vector< bool > &inputMask, const SG::ThinningHandleKey< xAOD::TrackStateValidationContainer > &statesKey, const SG::ThinningHandleKey< xAOD::TrackMeasurementValidationContainer > &measurementsKey, std::atomic< unsigned int > &ntot_states, std::atomic< unsigned int > &ntot_measurements, std::atomic< unsigned int > &npass_states, std::atomic< unsigned int > &npass_measurements) const

Private Attributes

std::atomic< unsigned int > m_ntot {}
std::atomic< unsigned int > m_npass {}
StringProperty m_streamName { this, "StreamName", "", "Name of the stream being thinned" }
SG::ThinningHandleKey< xAOD::TrackParticleContainerm_inDetSGKey { this, "InDetTrackParticlesKey", "InDetTrackParticles", "" }
std::atomic< unsigned int > m_ntot_pix_states {}
std::atomic< unsigned int > m_npass_pix_states {}
SG::ThinningHandleKey< xAOD::TrackStateValidationContainerm_statesPixSGKey { this, "InDetTrackStatesPixKey", "PixelMSOSs", "" }
std::atomic< unsigned int > m_ntot_pix_measurements
std::atomic< unsigned int > m_npass_pix_measurements
SG::ThinningHandleKey< xAOD::TrackMeasurementValidationContainerm_measurementsPixSGKey { this, "InDetTrackMeasurementsPixKey", "PixelClusters", "" }
std::atomic< unsigned int > m_ntot_sct_states {}
std::atomic< unsigned int > m_npass_sct_states {}
SG::ThinningHandleKey< xAOD::TrackStateValidationContainerm_statesSctSGKey { this, "InDetTrackStatesSctKey", "SCT_MSOSs", "" }
std::atomic< unsigned int > m_ntot_sct_measurements {}
std::atomic< unsigned int > m_npass_sct_measurements {}
SG::ThinningHandleKey< xAOD::TrackMeasurementValidationContainerm_measurementsSctSGKey { this, "InDetTrackMeasurementsSctKey", "SCT_Clusters", "" }
std::atomic< unsigned int > m_ntot_trt_states {}
std::atomic< unsigned int > m_npass_trt_states {}
SG::ThinningHandleKey< xAOD::TrackStateValidationContainerm_statesTrtSGKey { this, "InDetTrackStatesTrtKey", "TRT_MSOSs", "" }
std::atomic< unsigned int > m_ntot_trt_measurements {}
std::atomic< unsigned int > m_npass_trt_measurements {}
SG::ThinningHandleKey< xAOD::TrackMeasurementValidationContainerm_measurementsTrtSGKey { this, "InDetTrackMeasurementsTrtKey", "TRT_DriftCircles", "" }
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollectionm_SCTDetEleCollKey {this, "SCTDetEleCollKey", "SCT_DetectorElementCollection", "Key of SiDetectorElementCollection for SCT"}
Gaudi::Property< bool > m_thinHitsOnTrack {this, "ThinHitsOnTrack", false}

Detailed Description

Definition at line 26 of file TrackParticleThinningBase.h.

Member Enumeration Documentation

◆ MeasurementType

Member Function Documentation

◆ doThinning()

StatusCode DerivationFramework::TrackParticleThinningBase::doThinning ( const EventContext & ctx) const
finaloverridevirtual

Definition at line 79 of file TrackParticleThinningBase.cxx.

80{
81
82 // Retrieve main TrackParticle collection
83 SG::ThinningHandle<xAOD::TrackParticleContainer> importedTrackParticles
84 (m_inDetSGKey, ctx);
85
86 // Check the event contains tracks
87 unsigned int nTracks = importedTrackParticles->size();
88 if (nTracks==0) return StatusCode::SUCCESS;
89
90 // Set up a mask with the same entries as the full TrackParticle collection
91 std::vector<bool> mask;
92 mask.assign(nTracks,false); // default: don't keep any tracks
93 m_ntot += nTracks;
94
95 // Execute the text parser and update the mask
96 std::vector<int> entries = updateMask(importedTrackParticles.cptr());
97 unsigned int nEntries = entries.size();
98 // check the sizes are compatible
99 if (nTracks != nEntries ) {
100 ATH_MSG_ERROR("Sizes incompatible! Are you sure your selection string used ID TrackParticles?");
101 return StatusCode::FAILURE;
102 } else {
103 // set mask
104 for (unsigned int i=0; i<nTracks; ++i) if (entries[i]==1) mask[i]=true;
105 }
106 // Count the mask
107 m_npass += std::count (mask.begin(), mask.end(), true);
108
109 // Execute the thinning service based on the mask.
110 importedTrackParticles.keep (mask);
111
112 //If thinning hits on track, look over States and Measurements collections as well
113 if (m_thinHitsOnTrack) {
114 filterTrackHits (ctx,
116 *importedTrackParticles,
117 mask,
124 filterTrackHits (ctx,
126 *importedTrackParticles,
127 mask,
134 filterTrackHits (ctx,
136 *importedTrackParticles,
137 mask,
144 }
145
146 return StatusCode::SUCCESS;
147}
#define ATH_MSG_ERROR(x)
SG::ThinningHandleKey< xAOD::TrackStateValidationContainer > m_statesPixSGKey
SG::ThinningHandleKey< xAOD::TrackStateValidationContainer > m_statesTrtSGKey
SG::ThinningHandleKey< xAOD::TrackStateValidationContainer > m_statesSctSGKey
SG::ThinningHandleKey< xAOD::TrackParticleContainer > m_inDetSGKey
virtual std::vector< int > updateMask(const xAOD::TrackParticleContainer *) const
void filterTrackHits(const EventContext &ctx, MeasurementType detTypeToSelect, const xAOD::TrackParticleContainer &inputTrackParticles, const std::vector< bool > &inputMask, const SG::ThinningHandleKey< xAOD::TrackStateValidationContainer > &statesKey, const SG::ThinningHandleKey< xAOD::TrackMeasurementValidationContainer > &measurementsKey, std::atomic< unsigned int > &ntot_states, std::atomic< unsigned int > &ntot_measurements, std::atomic< unsigned int > &npass_states, std::atomic< unsigned int > &npass_measurements) const
SG::ThinningHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurementsSctSGKey
SG::ThinningHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurementsPixSGKey
SG::ThinningHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurementsTrtSGKey
double entries
Definition listroot.cxx:49

◆ filterTrackHits()

void DerivationFramework::TrackParticleThinningBase::filterTrackHits ( const EventContext & ctx,
MeasurementType detTypeToSelect,
const xAOD::TrackParticleContainer & inputTrackParticles,
const std::vector< bool > & inputMask,
const SG::ThinningHandleKey< xAOD::TrackStateValidationContainer > & statesKey,
const SG::ThinningHandleKey< xAOD::TrackMeasurementValidationContainer > & measurementsKey,
std::atomic< unsigned int > & ntot_states,
std::atomic< unsigned int > & ntot_measurements,
std::atomic< unsigned int > & npass_states,
std::atomic< unsigned int > & npass_measurements ) const
private

Definition at line 150 of file TrackParticleThinningBase.cxx.

161{
162 std::vector<bool> maskStates;
163 std::vector<bool> maskMeasurements;
164
165 selectTrackHits (inputTrackParticles, inputMask, detTypeToSelect,
166 maskStates, maskMeasurements);
167
168 auto count = [] (const std::vector<bool>& m)
169 { return std::count (m.begin(), m.end(), true); };
170 npass_states += count (maskStates);
171 npass_measurements += count (maskMeasurements);
172
173 if (!statesKey.empty()) {
174 SG::ThinningHandle<xAOD::TrackStateValidationContainer> importedStates
175 (statesKey, ctx);
176 unsigned int size_states = importedStates->size();
177 if (size_states == 0) {
178 ATH_MSG_WARNING("States container is empty: " << statesKey.key());
179 }
180 else {
181 ntot_states += size_states;
182 if (maskStates.size() > size_states) {
183 ATH_MSG_ERROR("States mask size mismatch " << maskStates.size() <<
184 " > " << size_states);
185 }
186 maskStates.resize (size_states);
187 importedStates.keep (maskStates);
188 }
189 }
190
191 if (!measurementsKey.empty()) {
192 SG::ThinningHandle<xAOD::TrackMeasurementValidationContainer> importedMeasurements
193 (measurementsKey, ctx);
194 unsigned int size_measurements = importedMeasurements->size();
195 if (size_measurements == 0) {
196 ATH_MSG_WARNING("Measurements container is empty: " << measurementsKey.key());
197 }
198 else {
199 ntot_measurements += size_measurements;
200 if (maskMeasurements.size() > size_measurements) {
201 ATH_MSG_ERROR("Measurements mask size mismatch " << maskMeasurements.size() <<
202 " > " << size_measurements);
203 }
204 maskMeasurements.resize (size_measurements);
205 importedMeasurements.keep (maskMeasurements);
206 }
207 }
208}
#define ATH_MSG_WARNING(x)
void selectTrackHits(const xAOD::TrackParticleContainer &inputTrackParticles, const std::vector< bool > &inputMask, MeasurementType detTypeToSelect, std::vector< bool > &outputStatesMask, std::vector< bool > &outputMeasurementsMask) const
Select TrackStateValidation and TrackMeasurementValidation objects that are used in the (thinned) tra...
const std::string & key() const
Return the StoreGate ID for the referenced object.
bool empty() const
Test if the key is blank.
int count(std::string s, const std::string &regx)
count how many occurances of a regx are in a string
Definition hcg.cxx:148

◆ finalize()

StatusCode DerivationFramework::TrackParticleThinningBase::finalize ( )
finaloverridevirtual

Definition at line 46 of file TrackParticleThinningBase.cxx.

47{
48 ATH_MSG_VERBOSE("finalize() ...");
49 ATH_MSG_INFO("Processed "<< m_ntot <<" tracks, "<< m_npass<< " were retained ");
51 ATH_MSG_INFO("Pixel state objects thinning, Total / Passed (Efficiency): "
53 << " (" << (m_ntot_pix_states == 0 ? 0 : static_cast<float>(m_npass_pix_states) / m_ntot_pix_states) << ")");
54 ATH_MSG_INFO("Pixel measurements objects thinning, Total / Passed (Efficiency): "
56 << " (" << (m_ntot_pix_measurements == 0 ? 0 : static_cast<float>(m_npass_pix_measurements) / m_ntot_pix_measurements) << ")");
57 ATH_MSG_INFO("SCT state objects thinning, Total / Passed (Efficiency): "
59 << " (" << (m_ntot_sct_states == 0 ? 0 : static_cast<float>(m_npass_sct_states) / m_ntot_sct_states) << ")");
60 ATH_MSG_INFO("SCT measurements objects thinning, Total / Passed (Efficiency): "
62 << " (" << (m_ntot_sct_measurements == 0 ? 0 : static_cast<float>(m_npass_sct_measurements) / m_ntot_sct_measurements) << ")");
63 ATH_MSG_INFO("TRT state objects thinning, Total / Passed (Efficiency): "
65 << " (" << (m_ntot_trt_states == 0 ? 0 : static_cast<float>(m_npass_trt_states) / m_ntot_trt_states) << ")");
66 ATH_MSG_INFO("TRT measurements objects thinning, Total / Passed (Efficiency): "
68 << " (" << (m_ntot_trt_measurements == 0 ? 0 : static_cast<float>(m_npass_trt_measurements) / m_ntot_trt_measurements) << ")");
69 }
70 return StatusCode::SUCCESS;
71}
#define ATH_MSG_INFO(x)
#define ATH_MSG_VERBOSE(x)

◆ initialize()

StatusCode DerivationFramework::TrackParticleThinningBase::initialize ( )
overridevirtual

Reimplemented in DerivationFramework::TrackParticleThinningPHYS.

Definition at line 18 of file TrackParticleThinningBase.cxx.

19{
20 ATH_MSG_VERBOSE("initialize() ...");
21
22 //check xAOD::InDetTrackParticle collection
23 ATH_CHECK( m_inDetSGKey.initialize (m_streamName) );
24 ATH_MSG_INFO("Using " << m_inDetSGKey << "as the source collection for inner detector track particles");
25 //check availability of xAOD::TrackStateValidation and xAOD::TrackMeasurementValidation containers
27 ATH_MSG_INFO("Pixel states collection as source for thinning: " << m_statesPixSGKey.key());
28 ATH_MSG_INFO("Pixel measurements collection as source for thinning: " << m_measurementsPixSGKey.key());
29 ATH_MSG_INFO("SCT states collection as source for thinning: " << m_statesSctSGKey.key());
30 ATH_MSG_INFO("SCT measurements collection as source for thinning: " << m_measurementsSctSGKey.key());
31 ATH_MSG_INFO("TRT states collection as source for thinning: " << m_statesTrtSGKey.key());
32 ATH_MSG_INFO("TRT measurements collection as source for thinning: " << m_measurementsTrtSGKey.key());
33 }
40
41 ATH_CHECK(m_SCTDetEleCollKey.initialize( !m_SCTDetEleCollKey.key().empty() ));
42
43 return StatusCode::SUCCESS;
44}
#define ATH_CHECK
Evaluate an expression and check for errors.
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollection > m_SCTDetEleCollKey

◆ selectTrackHits()

void DerivationFramework::TrackParticleThinningBase::selectTrackHits ( const xAOD::TrackParticleContainer & inputTrackParticles,
const std::vector< bool > & inputMask,
MeasurementType detTypeToSelect,
std::vector< bool > & outputStatesMask,
std::vector< bool > & outputMeasurementsMask ) const
private

Select TrackStateValidation and TrackMeasurementValidation objects that are used in the (thinned) track container.

Definition at line 211 of file TrackParticleThinningBase.cxx.

215{
216 // loop over track particles, consider only the ones pre-selected by the mask
217 int trkIndex=-1;
218 for (const xAOD::TrackParticle* trkIt : inputTrackParticles) {
219 trkIndex++;
220 if (not inputMask[trkIndex]) continue;
221
222 // loop over the TrackStateValidation objects, and add them to the outputStatesMask
223 using StatesOnTrack = std::vector<ElementLink<xAOD::TrackStateValidationContainer>>;
224 static const SG::ConstAccessor< StatesOnTrack > msosLinkAcc( "msosLink" );
225 if( ! msosLinkAcc.isAvailable(*trkIt) ) {
226 ATH_MSG_DEBUG("Cannot find TrackState link from xAOD::TrackParticle. Skipping track.");
227 continue;
228 }
229 const StatesOnTrack& measurementsOnTrack = msosLinkAcc(*trkIt);
230 for( const ElementLink<xAOD::TrackStateValidationContainer>& trkState_el : measurementsOnTrack) {
231 if (not trkState_el.isValid()) {
232 ATH_MSG_DEBUG("Cannot find a valid link to TrackStateValidation object for track index: " << trkIndex);
233 continue; //not a valid link
234 }
235 if ((*trkState_el)->detType() != detTypeToSelect) {
236 ATH_MSG_VERBOSE("Discarding TrackState as not of correct type " << detTypeToSelect);
237 continue;
238 }
239 if (trkState_el.index() >= outputStatesMask.size()) {
240 outputStatesMask.resize (trkState_el.index()+1);
241 }
242 outputStatesMask[trkState_el.index()] = true;
243
244 // get the corresponding TrackMeasurementValidation object, if any, and add it to the outputMeasurementsMask
245 const ElementLink<xAOD::TrackMeasurementValidationContainer> trkMeasurement_el = (*trkState_el)->trackMeasurementValidationLink();
246 if (not trkMeasurement_el.isValid()) {
247 ATH_MSG_VERBOSE("Cannot find a valid link to TrackMeasurementValidation object from track state for track index: " << trkIndex
248 << ", trackState index: " << trkState_el.index());
249 continue; //not a valid link
250 }
251 if (*trkMeasurement_el == nullptr) {
252 ATH_MSG_VERBOSE("Invalid pointer to TrackMeasurementValidation object from track state for track index: " << trkIndex
253 << ", trackState index: " << trkState_el.index());
254 continue; //not linking to a valid object -- is it necessary?
255 }
256 if (trkMeasurement_el.index() >= outputMeasurementsMask.size()) {
257 outputMeasurementsMask.resize (trkMeasurement_el.index()+1);
258 }
259 outputMeasurementsMask[trkMeasurement_el.index()] = true;
260 }
261 } // end loop over xAOD::TrackParticle container
262}
#define ATH_MSG_DEBUG(x)
SG::ConstAccessor< T, ALLOC > ConstAccessor
Definition AuxElement.h:570
TrackParticle_v1 TrackParticle
Reference the current persistent version:

◆ updateMask()

std::vector< int > DerivationFramework::TrackParticleThinningBase::updateMask ( const xAOD::TrackParticleContainer * trackParticles) const
protectedvirtual

Reimplemented in DerivationFramework::TrackParticleThinningPHYS.

Definition at line 73 of file TrackParticleThinningBase.cxx.

74{
75 return std::vector<int>(trackParticles->size(), 0);
76}
size_type size() const noexcept
Returns the number of elements in the collection.

Member Data Documentation

◆ m_inDetSGKey

SG::ThinningHandleKey<xAOD::TrackParticleContainer> DerivationFramework::TrackParticleThinningBase::m_inDetSGKey { this, "InDetTrackParticlesKey", "InDetTrackParticles", "" }
private

Definition at line 41 of file TrackParticleThinningBase.h.

42{ this, "InDetTrackParticlesKey", "InDetTrackParticles", "" };

◆ m_measurementsPixSGKey

SG::ThinningHandleKey<xAOD::TrackMeasurementValidationContainer> DerivationFramework::TrackParticleThinningBase::m_measurementsPixSGKey { this, "InDetTrackMeasurementsPixKey", "PixelClusters", "" }
private

Definition at line 49 of file TrackParticleThinningBase.h.

50{ this, "InDetTrackMeasurementsPixKey", "PixelClusters", "" };

◆ m_measurementsSctSGKey

SG::ThinningHandleKey<xAOD::TrackMeasurementValidationContainer> DerivationFramework::TrackParticleThinningBase::m_measurementsSctSGKey { this, "InDetTrackMeasurementsSctKey", "SCT_Clusters", "" }
private

Definition at line 55 of file TrackParticleThinningBase.h.

56{ this, "InDetTrackMeasurementsSctKey", "SCT_Clusters", "" };

◆ m_measurementsTrtSGKey

SG::ThinningHandleKey<xAOD::TrackMeasurementValidationContainer> DerivationFramework::TrackParticleThinningBase::m_measurementsTrtSGKey { this, "InDetTrackMeasurementsTrtKey", "TRT_DriftCircles", "" }
private

Definition at line 61 of file TrackParticleThinningBase.h.

62{ this, "InDetTrackMeasurementsTrtKey", "TRT_DriftCircles", "" };

◆ m_npass

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_npass {}
private

Definition at line 38 of file TrackParticleThinningBase.h.

38{}, m_npass{};

◆ m_npass_pix_measurements

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_npass_pix_measurements
private

Definition at line 48 of file TrackParticleThinningBase.h.

◆ m_npass_pix_states

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_npass_pix_states {}
private

Definition at line 45 of file TrackParticleThinningBase.h.

◆ m_npass_sct_measurements

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_npass_sct_measurements {}
private

Definition at line 54 of file TrackParticleThinningBase.h.

◆ m_npass_sct_states

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_npass_sct_states {}
private

Definition at line 51 of file TrackParticleThinningBase.h.

◆ m_npass_trt_measurements

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_npass_trt_measurements {}
private

Definition at line 60 of file TrackParticleThinningBase.h.

◆ m_npass_trt_states

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_npass_trt_states {}
private

Definition at line 57 of file TrackParticleThinningBase.h.

◆ m_ntot

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_ntot {}
mutableprivate

Definition at line 38 of file TrackParticleThinningBase.h.

38{}, m_npass{};

◆ m_ntot_pix_measurements

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_ntot_pix_measurements
mutableprivate

Definition at line 48 of file TrackParticleThinningBase.h.

◆ m_ntot_pix_states

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_ntot_pix_states {}
mutableprivate

Definition at line 45 of file TrackParticleThinningBase.h.

◆ m_ntot_sct_measurements

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_ntot_sct_measurements {}
mutableprivate

Definition at line 54 of file TrackParticleThinningBase.h.

◆ m_ntot_sct_states

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_ntot_sct_states {}
mutableprivate

Definition at line 51 of file TrackParticleThinningBase.h.

◆ m_ntot_trt_measurements

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_ntot_trt_measurements {}
mutableprivate

Definition at line 60 of file TrackParticleThinningBase.h.

◆ m_ntot_trt_states

std::atomic<unsigned int> DerivationFramework::TrackParticleThinningBase::m_ntot_trt_states {}
mutableprivate

Definition at line 57 of file TrackParticleThinningBase.h.

◆ m_SCTDetEleCollKey

SG::ReadCondHandleKey<InDetDD::SiDetectorElementCollection> DerivationFramework::TrackParticleThinningBase::m_SCTDetEleCollKey {this, "SCTDetEleCollKey", "SCT_DetectorElementCollection", "Key of SiDetectorElementCollection for SCT"}
private

Definition at line 65 of file TrackParticleThinningBase.h.

65{this, "SCTDetEleCollKey", "SCT_DetectorElementCollection", "Key of SiDetectorElementCollection for SCT"};

◆ m_statesPixSGKey

SG::ThinningHandleKey<xAOD::TrackStateValidationContainer> DerivationFramework::TrackParticleThinningBase::m_statesPixSGKey { this, "InDetTrackStatesPixKey", "PixelMSOSs", "" }
private

Definition at line 46 of file TrackParticleThinningBase.h.

47{ this, "InDetTrackStatesPixKey", "PixelMSOSs", "" };

◆ m_statesSctSGKey

SG::ThinningHandleKey<xAOD::TrackStateValidationContainer> DerivationFramework::TrackParticleThinningBase::m_statesSctSGKey { this, "InDetTrackStatesSctKey", "SCT_MSOSs", "" }
private

Definition at line 52 of file TrackParticleThinningBase.h.

53{ this, "InDetTrackStatesSctKey", "SCT_MSOSs", "" };

◆ m_statesTrtSGKey

SG::ThinningHandleKey<xAOD::TrackStateValidationContainer> DerivationFramework::TrackParticleThinningBase::m_statesTrtSGKey { this, "InDetTrackStatesTrtKey", "TRT_MSOSs", "" }
private

Definition at line 58 of file TrackParticleThinningBase.h.

59{ this, "InDetTrackStatesTrtKey", "TRT_MSOSs", "" };

◆ m_streamName

StringProperty DerivationFramework::TrackParticleThinningBase::m_streamName { this, "StreamName", "", "Name of the stream being thinned" }
private

Definition at line 39 of file TrackParticleThinningBase.h.

40{ this, "StreamName", "", "Name of the stream being thinned" };

◆ m_thinHitsOnTrack

Gaudi::Property<bool> DerivationFramework::TrackParticleThinningBase::m_thinHitsOnTrack {this, "ThinHitsOnTrack", false}
private

Definition at line 68 of file TrackParticleThinningBase.h.

68{this, "ThinHitsOnTrack", false};

The documentation for this class was generated from the following files: