Skip to content
Snippets Groups Projects
Commit c2fc6dcc authored by Edward Moyse's avatar Edward Moyse
Browse files

Removed explicit constructor.

parent 8f24a88b
No related merge requests found
......@@ -4,10 +4,6 @@
#include "ExampleAlg.h"
ExampleAlg::ExampleAlg (const std::string& name, ISvcLocator* svcLocator)
: AthReentrantAlgorithm (name, svcLocator)
{ }
StatusCode ExampleAlg::initialize()
{
ATH_CHECK( m_trackParticleKey.initialize());
......
......@@ -14,7 +14,7 @@ class ExampleAlg
: public AthReentrantAlgorithm
{
public:
ExampleAlg (const std::string& name, ISvcLocator* svcLocator);
using AthReentrantAlgorithm::AthReentrantAlgorithm;
virtual StatusCode initialize() override;
virtual StatusCode execute (const EventContext& ctx) const override;
private:
......
......@@ -4,10 +4,6 @@
#include "ExampleAlg_step1.h"
ExampleAlg_step1::ExampleAlg_step1 (const std::string& name, ISvcLocator* svcLocator)
: AthReentrantAlgorithm (name, svcLocator)
{ }
StatusCode ExampleAlg_step1::initialize()
{
return StatusCode::SUCCESS;
......
......@@ -12,7 +12,7 @@ class ExampleAlg_step1
: public AthReentrantAlgorithm
{
public:
ExampleAlg_step1 (const std::string& name, ISvcLocator* svcLocator);
using AthReentrantAlgorithm::AthReentrantAlgorithm;
virtual StatusCode initialize() override;
virtual StatusCode execute (const EventContext& ctx) const override;
private:
......
......@@ -4,10 +4,6 @@
#include "ExampleAlg_step3.h"
ExampleAlg_step3::ExampleAlg_step3 (const std::string& name, ISvcLocator* svcLocator)
: AthReentrantAlgorithm (name, svcLocator)
{ }
StatusCode ExampleAlg_step3::initialize()
{
ATH_CHECK( m_trackParticleKey.initialize());
......
......@@ -13,7 +13,7 @@ class ExampleAlg_step3
: public AthReentrantAlgorithm
{
public:
ExampleAlg_step3 (const std::string& name, ISvcLocator* svcLocator);
using AthReentrantAlgorithm::AthReentrantAlgorithm;
virtual StatusCode initialize() override;
virtual StatusCode execute (const EventContext& ctx) const override;
private:
......
......@@ -4,10 +4,6 @@
#include "ExampleAlg_step4.h"
ExampleAlg_step4::ExampleAlg_step4 (const std::string& name, ISvcLocator* svcLocator)
: AthReentrantAlgorithm (name, svcLocator)
{ }
StatusCode ExampleAlg_step4::initialize()
{
ATH_CHECK( m_trackParticleKey.initialize());
......
......@@ -14,7 +14,7 @@ class ExampleAlg_step4
: public AthReentrantAlgorithm
{
public:
ExampleAlg_step4 (const std::string& name, ISvcLocator* svcLocator);
using AthReentrantAlgorithm::AthReentrantAlgorithm;
virtual StatusCode initialize() override;
virtual StatusCode execute (const EventContext& ctx) const override;
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment