From 98f2fe50c29f73697737eb64dbf77af142f4579e Mon Sep 17 00:00:00 2001 From: Andre Sailer <andre.philippe.sailer@cern.ch> Date: Fri, 3 Mar 2017 13:20:25 +0100 Subject: [PATCH] Add depreacted attribute to detector functions --- DDCore/include/DD4hep/Detector.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/DDCore/include/DD4hep/Detector.h b/DDCore/include/DD4hep/Detector.h index 4a2601c65..8d0e802f1 100644 --- a/DDCore/include/DD4hep/Detector.h +++ b/DDCore/include/DD4hep/Detector.h @@ -396,18 +396,24 @@ namespace DD4hep { // Deprecated functions to be removed soon: /// Create cached matrix to transform to world coordinates + [[gnu::deprecated("Use _DetElement_.nominal().worldTransformation")]] const TGeoHMatrix& worldTransformation() const; /// Create cached matrix to transform to parent coordinates + [[gnu::deprecated("Use _DetElement_.nominal().parentTransformation")]] const TGeoHMatrix& parentTransformation() const; /// Transformation from local coordinates of the placed volume to the world system + [[gnu::deprecated("Use _DetElement_.nominal().localToWorld()")]] bool localToWorld(const Position& local, Position& global) const; /// Transformation from local coordinates of the placed volume to the parent system + [[gnu::deprecated("Use _DetElement_.nominal().localToParent")]] bool localToParent(const Position& local, Position& parent) const; /// Transformation from world coordinates of the local placed volume coordinates + [[gnu::deprecated("Use _DetElement_.nominal().worldToLocal")]] bool worldToLocal(const Position& global, Position& local) const; /// Transformation from world coordinates of the local placed volume coordinates + [[gnu::deprecated("Use _DetElement_.nominal().parentToLocal")]] bool parentToLocal(const Position& parent, Position& local) const; }; -- GitLab