Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue 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
Peter Sherwood
athena
Commits
13b51c86
Commit
13b51c86
authored
4 years ago
by
Christos Anastopoulos
Browse files
Options
Downloads
Patches
Plain Diff
Remove default implemenation of EventContext aware method from IVertexFinder interface
parent
bfcbebae
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
InnerDetector/InDetRecTools/InDetRecToolInterfaces/InDetRecToolInterfaces/IVertexFinder.h
+11
-18
11 additions, 18 deletions
...tRecToolInterfaces/InDetRecToolInterfaces/IVertexFinder.h
with
11 additions
and
18 deletions
InnerDetector/InDetRecTools/InDetRecToolInterfaces/InDetRecToolInterfaces/IVertexFinder.h
+
11
−
18
View file @
13b51c86
...
@@ -55,35 +55,28 @@ public:
...
@@ -55,35 +55,28 @@ public:
virtual
~
IVertexFinder
(){};
virtual
~
IVertexFinder
(){};
static
const
InterfaceID
&
interfaceID
()
{
return
IID_IVertexFinder
;
}
static
const
InterfaceID
&
interfaceID
()
{
return
IID_IVertexFinder
;
}
/*
/*
* Find vertex from Trk::TrackCollection.
*
For MT we have 2 sets , one with EventContext and one withou
t
*
@param EventContex
t
*
Implementation really need to overload only o
ne
*
@param input track contai
ne
r
*
The clients can call either
*
@return a pair of newly created container and auxiliary store
*/
*/
virtual
std
::
pair
<
xAOD
::
VertexContainer
*
,
xAOD
::
VertexAuxContainer
*>
virtual
std
::
pair
<
xAOD
::
VertexContainer
*
,
xAOD
::
VertexAuxContainer
*>
findVertex
(
const
EventContext
&
ctx
,
const
TrackCollection
*
trackTES
)
const
findVertex
(
const
EventContext
&
ctx
,
{
const
TrackCollection
*
trackTES
)
const
=
0
;
(
void
)(
ctx
);
// We do not use ctx
return
findVertex
(
trackTES
);
}
/** Find vertex from xAOD::TrackParticleContainer.
/** Find vertex from xAOD::TrackParticleContainer.
* @param EventContext
* @param EventContext
* @param track
P
article
s input track
container
* @param
input
track
p
article container
* @return a pair of newly created container and auxiliary store
* @return a pair of newly created container and auxiliary store
*/
*/
virtual
std
::
pair
<
xAOD
::
VertexContainer
*
,
xAOD
::
VertexAuxContainer
*>
virtual
std
::
pair
<
xAOD
::
VertexContainer
*
,
xAOD
::
VertexAuxContainer
*>
findVertex
(
const
EventContext
&
ctx
,
findVertex
(
const
EventContext
&
ctx
,
const
xAOD
::
TrackParticleContainer
*
trackParticles
)
const
const
xAOD
::
TrackParticleContainer
*
trackParticles
)
const
=
0
;
{
(
void
)(
ctx
);
// We do not use ctx
return
findVertex
(
trackParticles
);
}
/*
/*
* Non Event context aware methods
* Non Event context aware methods.
* Can be remove when all clients move to EventContext
* aware calls
*/
*/
virtual
std
::
pair
<
xAOD
::
VertexContainer
*
,
xAOD
::
VertexAuxContainer
*>
virtual
std
::
pair
<
xAOD
::
VertexContainer
*
,
xAOD
::
VertexAuxContainer
*>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment