55 return StatusCode::SUCCESS;
61 ATH_CHECK(StripClusterContainer.isValid());
72 measToTruth = measToTruthHandle.
ptr();
78 ATH_CHECK(xaod.
record(std::make_unique<xAOD::TrackMeasurementValidationContainer>(),
79 std::make_unique<xAOD::TrackMeasurementValidationAuxContainer>()));
101 std::vector<bool> keepClusterCollection {};
106 for (std::size_t i(0); i<stripClusters->
size(); ++i) {
107 if (not keepClusterCollection[i])
continue;
113 measurements->
back()->index() );
115 decorator_measurement_link(*cluster) = std::move(mlink);
122 ATH_MSG_FATAL(
"Invalid strip detector element for hash " << hashId );
123 return StatusCode::FAILURE;
128 std::vector< std::uint64_t > rdoIdentifierList;
129 rdoIdentifierList.reserve(rdoList.size());
130 for( Identifier::value_type hitIdentifierValue : rdoList ){
131 rdoIdentifierList.push_back( hitIdentifierValue );
150 decor_detectorElementID(*measurement) = hashId;
151 decor_waferID(*measurement) = waferId.
get_compact();
153 decor_layer(*measurement) =
m_stripHelper->layer_disk(waferId);
155 decor_sizeZ(*measurement) = 0;
157 decor_eta_module(*measurement) =
m_stripHelper->eta_module(waferId);
158 decor_phi_module(*measurement) =
m_stripHelper->phi_module(waferId);
159 decor_omegax(*measurement) = 0;
160 decor_omegay(*measurement) = 0;
161 decor_LorentzShift(*measurement) = 0;
162 decor_centroid_xphi(*measurement) = 0;
163 decor_centroid_xeta(*measurement) = 0;
173 std::size_t measurementIndex = 0;
174 for (std::size_t i(0); i<stripClusters->
size(); ++i) {
175 if (not keepClusterCollection[i])
continue;
182 return StatusCode::FAILURE;
185 if (cluster->index() >= measToTruth->size()) {
186 ATH_MSG_ERROR(
"PRD index "<< cluster->index() <<
" not present in the measurement to truth vector with size " << measToTruth->size());
187 return StatusCode::FAILURE;
190 auto tps = measToTruth->at(cluster->index());
192 std::vector<unsigned int> tp_indices;
193 std::vector<unsigned int> tp_barcodes;
194 for (
auto tp : tps) {
195 tp_indices.push_back(tp->index());
199 decor_truth_indices(*measurement) = std::move(tp_indices);
200 decor_truth_barcode(*measurement) = std::move(tp_barcodes);
205 ATH_MSG_DEBUG(
" recorded StripPrepData objects: size " << measurements->
size() );
206 return StatusCode::SUCCESS;
211 std::vector<bool>& labels)
const
215 labels.resize(clusters.size(),
true);
216 return StatusCode::SUCCESS;
218 labels.resize(clusters.size(),
false);
229 std::optional<ActsTrk::TrackContainer::ConstTrackProxy> optional_track =
getActsTrack(*trackParticle);
230 if ( not optional_track.has_value() ) {
231 ATH_MSG_ERROR(
"Invalid track link for particle " << trackParticle->index());
232 return StatusCode::FAILURE;
234 ActsTrk::TrackContainer::ConstTrackProxy track = optional_track.value();
237 track.container().trackStateContainer()
238 .visitBackwards(track.tipIndex(),
240 (
const typename ActsTrk::TrackContainer::ConstTrackStateProxy& state)
242 auto flags = state.typeFlags();
243 if (not flags.hasMeasurement()) return;
244 const xAOD::UncalibratedMeasurement* cluster = detail::xAODUncalibMeasCalibrator::unpack(state.getUncalibratedSourceLink());
245 if (!cluster || cluster->type() != xAOD::UncalibMeasType::StripClusterType) return;
246 labels.at(cluster->index()) = true;
251 return StatusCode::SUCCESS;
#define ATH_CHECK
Evaluate an expression and check for errors.
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
SG::ReadHandleKeyArray< xAOD::TrackParticleContainer > m_trackParticlesKey
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_waferID
SG::WriteHandleKey< xAOD::TrackMeasurementValidationContainer > m_write_xaod_key
Gaudi::Property< bool > m_keepOnlyOnTrackMeasurements
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_sizePhi
SG::WriteDecorHandleKey< xAOD::StripClusterContainer > m_trackMeasurement_link
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_LorentzShift
Gaudi::Property< bool > m_useTruthInfo
const SCT_ID * m_stripHelper
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_sizeZ
SG::WriteDecorHandleKey< xAOD::TrackMeasurementValidationContainer > m_measurement_omegay
virtual StatusCode initialize() override
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
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.
ElementLink implementation for ROOT usage.
bool isValid() const
Check if the element can be found.
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.
uint64_t identifier() const
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.
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