Skip to content
Snippets Groups Projects
Commit c86ecece authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

SystematicsHandles+SelectionHelpers: use extends to auto-declare interface inheritance

parent fa37894d
No related branches found
No related tags found
17 merge requests!78241Draft: FPGATrackSim: GenScan code refactor,!78236Draft: Switching Streams https://its.cern.ch/jira/browse/ATR-27417,!78056AFP monitoring: new synchronization and cleaning,!78041AFP monitoring: new synchronization and cleaning,!77990Updating TRT chip masks for L1TRT trigger simulation - ATR-28372,!77731Draft: Updates to ZDC reconstruction,!77728Draft: updates to ZDC reconstruction,!77522Draft: sTGC Pad Trigger Emulator,!76725ZdcNtuple: Fix cppcheck warning.,!76611L1CaloFEXByteStream: Fix out-of-bounds array accesses.,!76475Punchthrough AF3 implementation in FastG4,!76474Punchthrough AF3 implementation in FastG4,!76343Draft: MooTrackBuilder: Recalibrate NSW hits in refine method,!75729New implementation of ZDC nonlinear FADC correction.,!75703Draft: Update to HI han config for HLT jets,!75580AthToolSupport: support Gaudi interface base classes,!75127Draft: Seeder types rebase2 grid fix
/*
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*/
/// @author Nils Krumnack
......@@ -24,16 +24,6 @@
namespace CP
{
SelectionNameSvc ::
SelectionNameSvc (const std::string& name,
ISvcLocator* pSvcLocator)
: AsgService (name, pSvcLocator)
{
declareServiceInterface<ISelectionNameSvc>();
}
StatusCode SelectionNameSvc ::
initialize ()
......
/*
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
*/
/// @author Nils Krumnack
......@@ -22,29 +22,15 @@ namespace CP
{
/// \brief the canonical implementation of \ref ISelectionNameSvc
class SelectionNameSvc final : public asg::AsgService,
virtual public ISelectionNameSvc
class SelectionNameSvc final : public extends<asg::AsgService, ISelectionNameSvc>
{
//
// public interface
//
/// \brief standard constructor
/// \par Guarantee
/// strong
/// \par Failures
/// out of memory II
public:
SelectionNameSvc (const std::string& name,
ISvcLocator* pSvcLocator);
//
// inherited interface
// public interface
//
public:
using extends::extends; // base class constructor
virtual StatusCode initialize () override;
virtual StatusCode addAcceptInfo (const std::string& objectName, const std::string& decorName,
......
......@@ -25,15 +25,6 @@
namespace CP
{
SystematicsSvc ::
SystematicsSvc (const std::string& name,
ISvcLocator* pSvcLocator)
: AsgService (name, pSvcLocator)
{
declareServiceInterface<ISystematicsSvc>();
}
StatusCode SystematicsSvc ::
initialize ()
......
......@@ -20,29 +20,16 @@ namespace CP
{
/// \brief the canonical implementation of \ref ISystematicsSvc
class SystematicsSvc final : public asg::AsgService,
virtual public ISystematicsSvc
class SystematicsSvc final : public extends<asg::AsgService, ISystematicsSvc>
{
//
// public interface
//
/// \brief standard constructor
/// \par Guarantee
/// strong
/// \par Failures
/// out of memory II
public:
SystematicsSvc (const std::string& name,
ISvcLocator* pSvcLocator);
using extends::extends; // base class constructor
//
// inherited interface
//
public:
virtual StatusCode initialize () override;
virtual StatusCode finalize () override;
virtual std::vector<CP::SystematicSet>
......
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