Skip to content

Commit

Permalink
TrackPropagation_factory: HcalBarrel_ID -> HCalBarrel_ID (#1070)
Browse files Browse the repository at this point in the history
Fixes: 6bef773 ('feat: add system and layer ID to Acts::Surface
GeometryIdentifier')


https://github.com/eic/EICrecon/actions/runs/6478157904/job/17589778133?pr=1069#step:5:605

> Error: [JEventProcessorPODIO] [error] Omitting PODIO collection
'CalorimeterTrackProjections' due to exception: getRefChild: Failed to
find child with name: HcalBarrel_ID Map contains 1759 elements: ...
  • Loading branch information
veprbl authored Oct 11, 2023
1 parent 546ea20 commit 46f7d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/global/tracking/TrackPropagation_factory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ void eicrecon::TrackPropagation_factory::SetPropagationSurfaces() {
auto OHCAL_Trf = transform * Acts::Translation3(Acts::Vector3(0, 0, 0));
auto OHCAL_prop_surface1 = Acts::Surface::makeShared<Acts::CylinderSurface>(OHCAL_Trf, OHCAL_R, OHCAL_halfz);
auto OHCAL_prop_surface2 = Acts::Surface::makeShared<Acts::CylinderSurface>(OHCAL_Trf, OHCAL_R + HCAL_avgClusterDepth, OHCAL_halfz);
auto OHCAL_system_id = m_geoSvc->detector()->constant<uint32_t>("HcalBarrel_ID");
auto OHCAL_system_id = m_geoSvc->detector()->constant<uint32_t>("HCalBarrel_ID");
OHCAL_prop_surface1->assignGeometryId(Acts::GeometryIdentifier().setExtra(OHCAL_system_id).setLayer(1));
OHCAL_prop_surface2->assignGeometryId(Acts::GeometryIdentifier().setExtra(OHCAL_system_id).setLayer(2));
m_target_surface_list.push_back(OHCAL_prop_surface1);
Expand Down

0 comments on commit 46f7d9a

Please sign in to comment.