Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
atlas
athena
Commits
6e35ba02
Commit
6e35ba02
authored
Aug 18, 2020
by
Mark Hodgkinson
Browse files
Remove empty destructors and update constructor to more compact definitiomns.
parent
d6be30db
Changes
6
Hide whitespace changes
Inline
Side-by-side
Reconstruction/eflowRec/eflowRec/PFChargedFlowElementCreatorAlgorithm.h
View file @
6e35ba02
...
...
@@ -14,9 +14,7 @@ class PFChargedFlowElementCreatorAlgorithm : public AthReentrantAlgorithm {
public:
PFChargedFlowElementCreatorAlgorithm
(
const
std
::
string
&
name
,
ISvcLocator
*
pSvcLocator
);
~
PFChargedFlowElementCreatorAlgorithm
()
{}
using
AthReentrantAlgorithm
::
AthReentrantAlgorithm
;
StatusCode
initialize
();
StatusCode
execute
(
const
EventContext
&
)
const
;
...
...
Reconstruction/eflowRec/eflowRec/PFLCNeutralFlowElementCreatorAlgorithm.h
View file @
6e35ba02
...
...
@@ -15,12 +15,7 @@
class
PFLCNeutralFlowElementCreatorAlgorithm
:
public
AthReentrantAlgorithm
{
public:
PFLCNeutralFlowElementCreatorAlgorithm
(
const
std
::
string
&
name
,
ISvcLocator
*
pSvcLocator
);
~
PFLCNeutralFlowElementCreatorAlgorithm
()
{}
static
const
InterfaceID
&
interfaceID
();
using
AthReentrantAlgorithm
::
AthReentrantAlgorithm
;
StatusCode
initialize
();
StatusCode
execute
(
const
EventContext
&
ctx
)
const
;
...
...
Reconstruction/eflowRec/eflowRec/PFNeutralFlowElementCreatorAlgorithm.h
View file @
6e35ba02
...
...
@@ -16,11 +16,7 @@ class PFNeutralFlowElementCreatorAlgorithm : public AthReentrantAlgorithm {
public:
PFNeutralFlowElementCreatorAlgorithm
(
const
std
::
string
&
name
,
ISvcLocator
*
pSvcLocator
);
~
PFNeutralFlowElementCreatorAlgorithm
()
{}
static
const
InterfaceID
&
interfaceID
();
using
AthReentrantAlgorithm
::
AthReentrantAlgorithm
;
StatusCode
initialize
();
StatusCode
execute
(
const
EventContext
&
ctx
)
const
;
...
...
Reconstruction/eflowRec/src/PFChargedFlowElementCreatorAlgorithm.cxx
View file @
6e35ba02
...
...
@@ -11,11 +11,6 @@
#include "xAODPFlow/PFODefs.h"
#include "xAODCore/AuxStoreAccessorMacros.h"
PFChargedFlowElementCreatorAlgorithm
::
PFChargedFlowElementCreatorAlgorithm
(
const
std
::
string
&
name
,
ISvcLocator
*
pSvcLocator
)
:
AthReentrantAlgorithm
(
name
,
pSvcLocator
)
{
}
StatusCode
PFChargedFlowElementCreatorAlgorithm
::
initialize
(){
ATH_CHECK
(
m_eflowCaloObjectContainerReadHandleKey
.
initialize
());
...
...
Reconstruction/eflowRec/src/PFLCNeutralFlowElementCreatorAlgorithm.cxx
View file @
6e35ba02
...
...
@@ -2,10 +2,6 @@
#include "xAODCore/ShallowCopy.h"
#include "xAODCaloEvent/CaloClusterContainer.h"
PFLCNeutralFlowElementCreatorAlgorithm
::
PFLCNeutralFlowElementCreatorAlgorithm
(
const
std
::
string
&
name
,
ISvcLocator
*
pSvcLocator
)
:
AthReentrantAlgorithm
(
name
,
pSvcLocator
)
{}
StatusCode
PFLCNeutralFlowElementCreatorAlgorithm
::
initialize
(){
ATH_CHECK
(
m_neutralFEContainerReadHandleKey
.
initialize
());
...
...
Reconstruction/eflowRec/src/PFNeutralFlowElementCreatorAlgorithm.cxx
View file @
6e35ba02
...
...
@@ -5,10 +5,6 @@
#include "xAODCore/ShallowCopy.h"
#include "xAODPFlow/FlowElementAuxContainer.h"
PFNeutralFlowElementCreatorAlgorithm
::
PFNeutralFlowElementCreatorAlgorithm
(
const
std
::
string
&
name
,
ISvcLocator
*
pSvcLocator
)
:
AthReentrantAlgorithm
(
name
,
pSvcLocator
)
{}
StatusCode
PFNeutralFlowElementCreatorAlgorithm
::
initialize
(){
ATH_CHECK
(
m_eflowCaloObjectContainerReadHandleKey
.
initialize
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment