Skip to content

Commit

Permalink
TrackPropagation_factory: HcalEndcapN_* is not defined anymore, use L…
Browse files Browse the repository at this point in the history
  • Loading branch information
veprbl authored Oct 9, 2023
1 parent cea19eb commit 9ade2da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/global/tracking/TrackPropagation_factory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ void eicrecon::TrackPropagation_factory::SetPropagationSurfaces() {
m_target_surface_ID.push_back(2);

// Create propagation surface for LFHCAL
const double LFHCAL_Z = (m_geoSvc->detector()->constant<double>("HcalEndcapP_zmin") / dd4hep::mm) * Acts::UnitConstants::mm;
const double LFHCAL_Z = (m_geoSvc->detector()->constant<double>("LFHCAL_zmin") / dd4hep::mm) * Acts::UnitConstants::mm;
const double LFHCAL_MinR = 0.0;
const double LFHCAL_MaxR = (m_geoSvc->detector()->constant<double>("HcalEndcapP_rmax") / dd4hep::mm) * extend * Acts::UnitConstants::mm;
const double LFHCAL_MaxR = (m_geoSvc->detector()->constant<double>("LFHCAL_rmax") / dd4hep::mm) * extend * Acts::UnitConstants::mm;
auto LFHCAL_Bounds = std::make_shared<Acts::RadialBounds>(LFHCAL_MinR, LFHCAL_MaxR);
auto LFHCAL_Trf1 = transform * Acts::Translation3(Acts::Vector3(0, 0, LFHCAL_Z));
auto LFHCAL_Trf2 = transform * Acts::Translation3(Acts::Vector3(0, 0, LFHCAL_Z + HCAL_avgClusterDepth));
Expand Down

0 comments on commit 9ade2da

Please sign in to comment.