Skip to content
Snippets Groups Projects

ATLASRECTS-6281 : Surface, try to solve memory leaks when passing naked pointers to transforms.

Merged ATLASRECTS-6281 : Surface, try to solve memory leaks when passing naked pointers to transforms.
7 files
+ 84
29
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -65,12 +65,15 @@ public:
/**Constructor from GlobalPosition*/
PerigeeSurface(const Amg::Vector3D& gp);
/**Constructor with a Transform - needed for tilt */
PerigeeSurface(Amg::Transform3D* tTransform);
/**Constructor with a Transform by ref - needed for tilt */
PerigeeSurface(const Amg::Transform3D& tTransform);
/**Constructor with a Transform by unique_ptr - needed for tilt */
PerigeeSurface(std::unique_ptr<Amg::Transform3D> tTransform);
/**Constructor with a Transform - needed for tilt */
PerigeeSurface(Amg::Transform3D* tTransform);
/**Copy constructor with shift*/
PerigeeSurface(const PerigeeSurface& pesf, const Amg::Transform3D& transf);
Loading