From 7050594ea68bb47867dd08d822a93643b12cb87f Mon Sep 17 00:00:00 2001 From: Leonhard Reichenbach Date: Wed, 20 Sep 2023 08:33:36 +0200 Subject: [PATCH] Rename GeoSvc to ActsGeoSvc (#12) --- geosvc.py | 4 ++-- .../components/{GeoSvc.cpp => ActsGeoSvc.cpp} | 20 +++++++++---------- .../src/components/{GeoSvc.h => ActsGeoSvc.h} | 10 +++++----- .../components/{IGeoSvc.h => IActsGeoSvc.h} | 6 +++--- 4 files changed, 20 insertions(+), 20 deletions(-) rename k4ActsTracking/src/components/{GeoSvc.cpp => ActsGeoSvc.cpp} (89%) rename k4ActsTracking/src/components/{GeoSvc.h => ActsGeoSvc.h} (91%) rename k4ActsTracking/src/components/{IGeoSvc.h => IActsGeoSvc.h} (90%) diff --git a/geosvc.py b/geosvc.py index 51b6c96..ecd55e5 100644 --- a/geosvc.py +++ b/geosvc.py @@ -21,11 +21,11 @@ from pprint import pprint from Gaudi.Configuration import * -from Configurables import GeoSvc +from Configurables import ActsGeoSvc algList = [] -a = GeoSvc("GeoSvc") +a = ActsGeoSvc("ActsGeoSvc") a.detectors = ["/home/delitez/ACTS/acts/thirdparty/OpenDataDetector/xml/OpenDataDetector.xml"] a.debugGeometry = True a.outputFileName = "MyObjFile" diff --git a/k4ActsTracking/src/components/GeoSvc.cpp b/k4ActsTracking/src/components/ActsGeoSvc.cpp similarity index 89% rename from k4ActsTracking/src/components/GeoSvc.cpp rename to k4ActsTracking/src/components/ActsGeoSvc.cpp index 82b9d6e..dae13d0 100644 --- a/k4ActsTracking/src/components/GeoSvc.cpp +++ b/k4ActsTracking/src/components/ActsGeoSvc.cpp @@ -17,7 +17,7 @@ * limitations under the License. */ -#include "GeoSvc.h" +#include "ActsGeoSvc.h" #include "Acts/Geometry/TrackingGeometry.hpp" #include "Acts/MagneticField/MagneticFieldContext.hpp" #include "Acts/Plugins/DD4hep/ConvertDD4hepDetector.hpp" @@ -32,11 +32,11 @@ using namespace Gaudi; -DECLARE_COMPONENT(GeoSvc) +DECLARE_COMPONENT(ActsGeoSvc) -GeoSvc::GeoSvc(const std::string& name, ISvcLocator* svc) : base_class(name, svc), m_log(msgSvc(), name) {} +ActsGeoSvc::ActsGeoSvc(const std::string& name, ISvcLocator* svc) : base_class(name, svc), m_log(msgSvc(), name) {} -GeoSvc::~GeoSvc() { +ActsGeoSvc::~ActsGeoSvc() { if (m_dd4hepGeo != nullptr) { try { m_dd4hepGeo->destroyInstance(); @@ -46,7 +46,7 @@ GeoSvc::~GeoSvc() { } } -StatusCode GeoSvc::initialize() { +StatusCode ActsGeoSvc::initialize() { if (m_xmlFileNames.size() > 0) { m_log << MSG::INFO << "Loading xml files from: '" << m_xmlFileNames << "'" << endmsg; } else { @@ -92,13 +92,13 @@ StatusCode GeoSvc::initialize() { return StatusCode::SUCCESS; } -StatusCode GeoSvc::execute() { return StatusCode::SUCCESS; } +StatusCode ActsGeoSvc::execute() { return StatusCode::SUCCESS; } -StatusCode GeoSvc::finalize() { return StatusCode::SUCCESS; } +StatusCode ActsGeoSvc::finalize() { return StatusCode::SUCCESS; } -StatusCode GeoSvc::buildDD4HepGeo() { +StatusCode ActsGeoSvc::buildDD4HepGeo() { m_dd4hepGeo = &(dd4hep::Detector::getInstance()); - m_dd4hepGeo->addExtension(this); + m_dd4hepGeo->addExtension(this); /// Load geometry for (auto& filename : m_xmlFileNames) { @@ -112,7 +112,7 @@ StatusCode GeoSvc::buildDD4HepGeo() { } /// Create a geometry OBJ file -StatusCode GeoSvc::createGeoObj() { +StatusCode ActsGeoSvc::createGeoObj() { // Convert DD4Hep geometry to acts Acts::ObjVisualization3D m_obj; diff --git a/k4ActsTracking/src/components/GeoSvc.h b/k4ActsTracking/src/components/ActsGeoSvc.h similarity index 91% rename from k4ActsTracking/src/components/GeoSvc.h rename to k4ActsTracking/src/components/ActsGeoSvc.h index 01caf4a..3e895ee 100644 --- a/k4ActsTracking/src/components/GeoSvc.h +++ b/k4ActsTracking/src/components/ActsGeoSvc.h @@ -35,9 +35,9 @@ #include "GaudiKernel/MsgStream.h" #include "GaudiKernel/Service.h" #include "GaudiKernel/ServiceHandle.h" -#include "IGeoSvc.h" +#include "IActsGeoSvc.h" -class GeoSvc : public extends { +class ActsGeoSvc : public extends { public: using VolumeSurfaceMap = std::unordered_map; @@ -74,9 +74,9 @@ class GeoSvc : public extends { MsgStream m_log; public: - GeoSvc(const std::string& name, ISvcLocator* svc); + ActsGeoSvc(const std::string& name, ISvcLocator* svc); - virtual ~GeoSvc(); + virtual ~ActsGeoSvc(); virtual StatusCode initialize() final; @@ -91,5 +91,5 @@ class GeoSvc : public extends { virtual const Acts::TrackingGeometry& trackingGeometry() const; }; -inline const Acts::TrackingGeometry& GeoSvc::trackingGeometry() const { return *m_trackingGeo; } +inline const Acts::TrackingGeometry& ActsGeoSvc::trackingGeometry() const { return *m_trackingGeo; } #endif diff --git a/k4ActsTracking/src/components/IGeoSvc.h b/k4ActsTracking/src/components/IActsGeoSvc.h similarity index 90% rename from k4ActsTracking/src/components/IGeoSvc.h rename to k4ActsTracking/src/components/IActsGeoSvc.h index f6f306a..cbebf8b 100644 --- a/k4ActsTracking/src/components/IGeoSvc.h +++ b/k4ActsTracking/src/components/IActsGeoSvc.h @@ -34,16 +34,16 @@ namespace Acts { class Surface; } // namespace Acts -class GAUDI_API IGeoSvc : virtual public IService { +class GAUDI_API IActsGeoSvc : virtual public IService { public: using VolumeSurfaceMap = std::unordered_map; public: - DeclareInterfaceID(IGeoSvc, 1, 0); + DeclareInterfaceID(IActsGeoSvc, 1, 0); virtual const Acts::TrackingGeometry& trackingGeometry() const = 0; - virtual ~IGeoSvc() {} + virtual ~IActsGeoSvc() {} }; #endif // IGEOSVC_H