Skip to content
Snippets Groups Projects
Commit 28ee399b authored by Edward Moyse's avatar Edward Moyse
Browse files

Merge branch 'xAODVertex_use_store_forSetter' into 'master'

use CachedValue::store() for the covariance/position setters (ATLASRECTS-4891)

See merge request atlas/athena!22106
parents 728bf819 bbc95531
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ namespace xAOD {
setY( position( 1 ) );
setZ( position( 2 ) );
// Reset the cache
m_position.reset();
m_position.store(position);
return;
}
......@@ -124,7 +124,7 @@ namespace xAOD {
// Set the persistent variable:
setCovariance( vec );
m_covariance.reset();
m_covariance.store(cov);
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment