Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!68727
GeoModelUtilities - Simplifiy memory management
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
GeoModelUtilities - Simplifiy memory management
jojungge/athena:GeoModelUtilsRefUnRef
into
main
Overview
26
Commits
4
Pipelines
0
Changes
11
Merged
Johannes Junggeburth
requested to merge
jojungge/athena:GeoModelUtilsRefUnRef
into
main
1 year ago
Overview
14
Commits
4
Pipelines
0
Changes
11
Expand
Remove calls to ref & unref by using PVLinks or the GeoIntrusivePtr
0
0
Merge request reports
Compare
main
version 4
6fe175fd
1 year ago
version 3
687674df
1 year ago
version 2
f3a49c25
1 year ago
version 1
eaa29c04
1 year ago
main (base)
and
latest version
latest version
3f3c6055
4 commits,
1 year ago
version 4
6fe175fd
3 commits,
1 year ago
version 3
687674df
4 commits,
1 year ago
version 2
f3a49c25
3 commits,
1 year ago
version 1
eaa29c04
2 commits,
1 year ago
11 files
+
32
−
86
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
DetectorDescription/GeoModel/GeoModelUtilities/GeoModelUtilities/GeoBorderSurface.h
+
10
−
6
Options
/*
Copyright (C) 2002-202
0
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-202
4
CERN for the benefit of the ATLAS collaboration
*/
#ifndef GeoBorderSurface_h
#define GeoBorderSurface_h 1
#include
<string>
#include
"GeoModelKernel/GeoIntrusivePtr.h"
#include
"GeoModelUtilities/GeoOpticalPhysVol.h"
#include
"GeoModelUtilities/GeoOpticalSurface.h"
class
GeoOpticalPhysVol
;
class
GeoOpticalSurface
;
@@ -17,8 +21,8 @@ class GeoBorderSurface
GeoOpticalPhysVol
*
pv1
,
GeoOpticalPhysVol
*
pv2
,
GeoOpticalSurface
*
opticalSurface
);
GeoBorderSurface
(
const
GeoBorderSurface
&
right
);
~
GeoBorderSurface
();
GeoBorderSurface
(
const
GeoBorderSurface
&
right
)
=
default
;
~
GeoBorderSurface
()
=
default
;
GeoBorderSurface
&
operator
=
(
const
GeoBorderSurface
&
right
)
=
delete
;
@@ -29,9 +33,9 @@ class GeoBorderSurface
private
:
std
::
string
m_name
;
GeoOpticalPhysVol
*
m_pv1
;
GeoOpticalPhysVol
*
m_pv2
;
GeoOpticalSurface
*
m_opticalSurface
;
GeoIntrusivePtr
<
GeoOpticalPhysVol
>
m_pv1
{}
;
GeoIntrusivePtr
<
GeoOpticalPhysVol
>
m_pv2
{}
;
GeoIntrusivePtr
<
GeoOpticalSurface
>
m_opticalSurface
{}
;
};
Loading