diff --git a/Tracking/Acts/FaserActsGeometry/src/FaserActsTrackingGeometrySvc.cxx b/Tracking/Acts/FaserActsGeometry/src/FaserActsTrackingGeometrySvc.cxx index 59d1d0ed8b780c8657b56347a3629d411a817f15..5351b29762b2bcaa2c839a5ac61656c2aeea54ec 100644 --- a/Tracking/Acts/FaserActsGeometry/src/FaserActsTrackingGeometrySvc.cxx +++ b/Tracking/Acts/FaserActsGeometry/src/FaserActsTrackingGeometrySvc.cxx @@ -127,6 +127,14 @@ FaserActsTrackingGeometrySvc::initialize() m_trackingGeometry = trackingGeometryBuilder ->trackingGeometry(constructionContext.context()); + ATH_MSG_VERBOSE("Printing info of ACTS tracking geometry surface:"); + m_trackingGeometry->visitSurfaces([&](const Acts::Surface* surface) { + auto center = surface->center(constructionContext.context()); + auto rotation = surface->transform(constructionContext.context()).rotation(); + ATH_MSG_VERBOSE("ACTS surface " << surface->geometryId() << " has center " << center.transpose() << ", local X axis at " << rotation.col(0).transpose() <<", local Z axis at " << rotation.col(2).transpose()); + } + ); + ATH_MSG_VERBOSE("Building nominal alignment store"); FaserActsAlignmentStore* nominalAlignmentStore = new FaserActsAlignmentStore(); ATH_MSG_VERBOSE("finish Building nominal alignment store");