ATLAS Offline Software
Loading...
Searching...
No Matches
StripClusterTruthDecoratorAlg.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
12
13namespace ActsTrk {
14
16 ISvcLocator *pSvcLocator) :
17 AthReentrantAlgorithm(name, pSvcLocator)
18 {}
19
20
22 ATH_MSG_DEBUG("Initialize " << name() << " ...");
23
24 // Read keys
27 ATH_CHECK(m_stripDetEleCollKey.initialize());
28
29 // Tracks only needed if we want on track clusters only
31
32 // Write keys
33 ATH_CHECK(m_write_xaod_key.initialize());
34
35 // Decorator
37
40
42 ATH_CHECK(m_measurement_waferID.initialize());
43 ATH_CHECK(m_measurement_bec.initialize());
44 ATH_CHECK(m_measurement_layer.initialize());
45 ATH_CHECK(m_measurement_sizePhi.initialize());
46 ATH_CHECK(m_measurement_sizeZ.initialize());
47 ATH_CHECK(m_measurement_SiWidth.initialize());
50 ATH_CHECK(m_measurement_omegax.initialize());
51 ATH_CHECK(m_measurement_omegay.initialize());
55 ATH_CHECK(m_measurement_side.initialize());
56
57 ATH_CHECK(detStore()->retrieve(m_stripHelper, "SCT_ID"));
58
59 return StatusCode::SUCCESS;
60 }
61
62 StatusCode StripClusterTruthDecoratorAlg::execute(const EventContext& ctx) const {
63
65 ATH_CHECK(StripClusterContainer.isValid());
66 const xAOD::StripClusterContainer *stripClusters = StripClusterContainer.cptr();
67
69 ATH_CHECK(stripDetEleHandle.isValid());
70 const InDetDD::SiDetectorElementCollection* stripElements = stripDetEleHandle.cptr();
71
72 const ActsTrk::MeasurementToTruthParticleAssociation* measToTruth(nullptr);
73 if (m_useTruthInfo) {
75 ATH_CHECK( measToTruthHandle.isValid());
76 measToTruth = measToTruthHandle.ptr();
77 }
78
79 // Setup outputs
80 // Create the xAOD container and its auxiliary store:
82 ATH_CHECK(xaod.record(std::make_unique<xAOD::TrackMeasurementValidationContainer>(),
83 std::make_unique<xAOD::TrackMeasurementValidationAuxContainer>()));
84
87
103
104 // collection
105 std::vector<bool> keepClusterCollection {};
106 ATH_CHECK( labelMeasurementToKeep(ctx, *stripClusters, keepClusterCollection) );
107 xAOD::TrackMeasurementValidationContainer *measurements = xaod.ptr();
108
109 // loop over collection and convert to xAOD::TrackMeasurementValidation
110 for (std::size_t i(0); i<stripClusters->size(); ++i) {
111 if (not keepClusterCollection[i]) continue;
112 const xAOD::StripCluster* cluster = stripClusters->at(i);
113
114 measurements->push_back( new xAOD::TrackMeasurementValidation() );
115 xAOD::TrackMeasurementValidation* measurement = measurements->back();
117 measurements->back()->index() );
118 ATH_CHECK( mlink.isValid() );
119 decorator_measurement_link(*cluster) = std::move(mlink);
120
121 xAOD::DetectorIdentType clusterId = cluster->identifier();
122 xAOD::DetectorIDHashType hashId = cluster->identifierHash();
123
124 const InDetDD::SiDetectorElement *element = stripElements->getDetectorElement(hashId);
125 if ( not element ) {
126 ATH_MSG_FATAL( "Invalid strip detector element for hash " << hashId );
127 return StatusCode::FAILURE;
128 }
129
131 rdoList = cluster->rdoList();
132 std::vector< std::uint64_t > rdoIdentifierList;
133 rdoIdentifierList.reserve(rdoList.size());
134 for( Identifier::value_type hitIdentifierValue : rdoList ){
135 rdoIdentifierList.push_back( hitIdentifierValue );
136 }
137
138 //Set Identifier
139 measurement->setIdentifier( clusterId );
140 measurement->setRdoIdentifierList(std::move(rdoIdentifierList));
141
142 //Set Global Position
143 auto gpos = cluster->globalPosition();
144 measurement->setGlobalPosition(gpos.x(), gpos.y(), gpos.z());
145
146 // Set local position and error matrix
147 auto locpos = cluster->localPosition<1>();
148 measurement->setLocalPosition(locpos[0], locpos[1]);
149
150 auto localCov = cluster->localCovariance<1>();
151 measurement->setLocalPositionError( localCov(0,0), 0., 0. );
152
153 const Identifier waferId = m_stripHelper->wafer_id(hashId);
154 decor_detectorElementID(*measurement) = hashId;
155 decor_waferID(*measurement) = waferId.get_compact();
156 decor_bec(*measurement) = m_stripHelper->barrel_ec(waferId);
157 decor_layer(*measurement) = m_stripHelper->layer_disk(waferId);
158 decor_sizePhi(*measurement) = cluster->channelsInPhi();
159 decor_sizeZ(*measurement) = 0;
160 decor_SiWidth(*measurement) = cluster->channelsInPhi();
161 decor_eta_module(*measurement) = m_stripHelper->eta_module(waferId);
162 decor_phi_module(*measurement) = m_stripHelper->phi_module(waferId);
163 decor_omegax(*measurement) = 0;
164 decor_omegay(*measurement) = 0;
165 decor_LorentzShift(*measurement) = 0;
166 decor_centroid_xphi(*measurement) = 0;
167 decor_centroid_xeta(*measurement) = 0;
168 decor_side(*measurement) = m_stripHelper->side(waferId);
169 }
170
171
172 // Get a list of all true particle contributing to the cluster
173 if (m_useTruthInfo) {
176
177 std::size_t measurementIndex = 0;
178 for (std::size_t i(0); i<stripClusters->size(); ++i) {
179 if (not keepClusterCollection[i]) continue;
180 const xAOD::StripCluster* cluster = stripClusters->at(i);
181 xAOD::TrackMeasurementValidation* measurement = measurements->at(measurementIndex);
182
183 // Check the two match
184 if (cluster->identifier() != measurement->identifier()) {
185 ATH_MSG_ERROR("Cluster and Measurement are not matching!");
186 return StatusCode::FAILURE;
187 }
188
189 if (cluster->index() >= measToTruth->size()) {
190 ATH_MSG_ERROR("PRD index "<< cluster->index() << " not present in the measurement to truth vector with size " << measToTruth->size());
191 return StatusCode::FAILURE;
192 }
193
194 auto tps = measToTruth->at(cluster->index());
195
196 std::vector<unsigned int> tp_indices;
197 std::vector<unsigned int> tp_barcodes;
198 for (auto tp : tps) {
199 tp_indices.push_back(tp->index());
200 tp_barcodes.push_back(HepMC::uniqueID(tp));
201 }
202
203 decor_truth_indices(*measurement) = std::move(tp_indices);
204 decor_truth_barcode(*measurement) = std::move(tp_barcodes);
205 ++measurementIndex;
206 } // loop on clusters
207 }
208
209 ATH_MSG_DEBUG( " recorded StripPrepData objects: size " << measurements->size() );
210 return StatusCode::SUCCESS;
211 }
212
214 const xAOD::StripClusterContainer& clusters,
215 std::vector<bool>& labels) const
216{
217 labels.clear();
219 labels.resize(clusters.size(), true);
220 return StatusCode::SUCCESS;
221 }
222 labels.resize(clusters.size(), false);
223
224
225 // get the tracks
227 SG::ReadHandle<xAOD::TrackParticleContainer> trackParticleHandle = SG::makeHandle( trackParticlesKey, ctx );
228 ATH_CHECK(trackParticleHandle.isValid());
229 const xAOD::TrackParticleContainer* trackParticles = trackParticleHandle.cptr();
230
231 for (const xAOD::TrackParticle* trackParticle : *trackParticles) {
232
233 std::optional<ActsTrk::TrackContainer::ConstTrackProxy> optional_track = getActsTrack(*trackParticle);
234 if ( not optional_track.has_value() ) {
235 ATH_MSG_ERROR("Invalid track link for particle " << trackParticle->index());
236 return StatusCode::FAILURE;
237 }
238 ActsTrk::TrackContainer::ConstTrackProxy track = optional_track.value();
239
240 // loop on track states
241 track.container().trackStateContainer()
242 .visitBackwards(track.tipIndex(),
243 [&labels]
244 (const typename ActsTrk::TrackContainer::ConstTrackStateProxy& state)
245 {
246 auto flags = state.typeFlags();
247 if (not flags.hasMeasurement()) return;
248
249 auto sl = state.getUncalibratedSourceLink().template get<ATLASUncalibSourceLink>();
250 if (sl == nullptr) return;
251
252 const xAOD::UncalibratedMeasurement &cluster = getUncalibratedMeasurement(sl);
253 if (cluster.type() != xAOD::UncalibMeasType::StripClusterType) return;
254 labels.at(cluster.index()) = true;
255 });
256 } // loop on tracks
257 } // loop on read handle keys
258
259 return StatusCode::SUCCESS;
260}
261
262} // ActsTrk
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_FATAL(x)
#define ATH_MSG_DEBUG(x)
ATLAS-specific HepMC functions.
Handle class for reading a decoration on an object.
Property holding a SG store/key/clid from which a ReadHandle is made.
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollection > m_stripDetEleCollKey
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_phi_module
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_SiWidth
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_layer
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_eta_module
virtual StatusCode execute(const EventContext &ctx) const override
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_centroid_xeta
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_detectorElementID
SG::ReadHandleKey< xAOD::StripClusterContainer > m_clustercontainer_key
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_side
StripClusterTruthDecoratorAlg(const std::string &name, ISvcLocator *pSvcLocator)
SG::ReadHandleKeyArray< xAOD::TrackParticleContainer > m_trackParticlesKey
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_waferID
SG::WriteHandleKey< xAOD::TrackMeasurementValidationContainer > m_write_xaod_key
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_sizePhi
SG::WriteDecorHandleKey< xAOD::StripClusterContainer > m_trackMeasurement_link
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_LorentzShift
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_sizeZ
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_omegay
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_centroid_xphi
StatusCode labelMeasurementToKeep(const EventContext &ctx, const xAOD::StripClusterContainer &clusters, std::vector< bool > &labels) const
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_omegax
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_bec
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_truth_barcodes
SG::ReadHandleKey< MeasurementToTruthParticleAssociation > m_associationMap_key
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_truth_indices
const ServiceHandle< StoreGateSvc > & detStore() const
An algorithm that can be simultaneously executed in multiple threads.
const T * back() const
Access the last element in the collection as an rvalue.
const T * at(size_type n) const
Access an element, as an rvalue.
value_type push_back(value_type pElem)
Add an element to the end of the collection.
size_type size() const noexcept
Returns the number of elements in the collection.
value_type get_compact() const
Get the compact id.
Class to hold the SiDetectorElement objects to be put in the detector store.
const SiDetectorElement * getDetectorElement(const IdentifierHash &hash) const
Class to hold geometrical description of a silicon detector element.
Helper class to provide constant type-safe access to aux data.
const_pointer_type cptr()
Property holding a SG store/key/clid from which a ReadHandle is made.
const_pointer_type ptr()
Dereference the pointer.
virtual bool isValid() override final
Can the handle be successfully dereferenced?
const_pointer_type cptr()
Dereference the pointer.
Handle class for adding a decoration to an object.
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
pointer_type ptr()
Dereference the pointer.
ConstVectorMap< 3 > globalPosition() const
Returns the global position of the strip cluster.
SG::ConstAccessor< SG::JaggedVecElt< Identifier::value_type > >::element_type rdoList() const
Returns the list of identifiers of the channels building the cluster.
int channelsInPhi() const
Returns the dimensions of the cluster in numbers of channels in phi (x), respectively.
void setRdoIdentifierList(const std::vector< uint64_t > &rdoIdentifierList)
Sets the list of RDO identifiers.
void setLocalPositionError(float localXError, float localYError, float localXYCorrelation)
Sets the local position error.
void setLocalPosition(float localX, float localY)
Sets the local position.
void setIdentifier(uint64_t identifier)
Sets the identifier.
void setGlobalPosition(float globalX, float globalY, float globalZ)
Sets the global position.
ConstMatrixMap< N > localCovariance() const
Returns the local covariance of the measurement.
DetectorIDHashType identifierHash() const
Returns the IdentifierHash of the measurement (corresponds to the detector element IdentifierHash).
DetectorIdentType identifier() const
Returns the full Identifier of the measurement.
ConstVectorMap< N > localPosition() const
Returns the local position of the measurement.
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...
std::optional< ActsTrk::TrackContainer::ConstTrackProxy > getActsTrack(const xAOD::TrackParticle &trkPart)
Return the proxy to the Acts track from which the track particle was made frome.
Definition Decoration.cxx:9
int uniqueID(const T &p)
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
TrackMeasurementValidation_v1 TrackMeasurementValidation
Reference the current persistent version:
StripCluster_v1 StripCluster
Define the version of the strip cluster class.
TrackParticle_v1 TrackParticle
Reference the current persistent version:
long unsigned int DetectorIdentType
StripClusterContainer_v1 StripClusterContainer
Define the version of the strip cluster container.
TrackParticleContainer_v1 TrackParticleContainer
Definition of the current "TrackParticle container version".
TrackMeasurementValidationContainer_v1 TrackMeasurementValidationContainer
Definition of the current "TrackMeasurementValidation container version".
unsigned int DetectorIDHashType
@ detector ID element hash