Skip to content
Snippets Groups Projects
Commit ba20548b authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'clang.VrtSecInclusive-20220128' into 'master'

VrtSecInclusive: Fix compilation with clang.

See merge request !50026
parents 89b590fd c0bd05b1
No related branches found
No related tags found
4 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50026VrtSecInclusive: Fix compilation with clang.
...@@ -42,7 +42,7 @@ namespace VKalVrtAthena { ...@@ -42,7 +42,7 @@ namespace VKalVrtAthena {
const Trk::Perigee* per) const Trk::Perigee* per)
{ {
const EventContext& ctx = Gaudi::Hive::currentContext(); const EventContext& ctx = Gaudi::Hive::currentContext();
const Trk::TrackParameters* Output(nullptr); std::unique_ptr<Trk::TrackParameters> Output;
if( layer->bec() == IntersectionPos::barrel ) { if( layer->bec() == IntersectionPos::barrel ) {
...@@ -87,8 +87,6 @@ namespace VKalVrtAthena { ...@@ -87,8 +87,6 @@ namespace VKalVrtAthena {
trk->template auxdecor<float>( Form("intersection_%s_y", layer->name().c_str()) ) = Output->position().y(); trk->template auxdecor<float>( Form("intersection_%s_y", layer->name().c_str()) ) = Output->position().y();
trk->template auxdecor<float>( Form("intersection_%s_z", layer->name().c_str()) ) = Output->position().z(); trk->template auxdecor<float>( Form("intersection_%s_z", layer->name().c_str()) ) = Output->position().z();
} }
delete Output;
} }
//____________________________________________________________________________________________________ //____________________________________________________________________________________________________
......
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