Skip to content

Commit 61d6770

Browse files
committedMar 22, 2025·
fix: support gaudi@39, without GaudiAlg
1 parent d59f6ad commit 61d6770

File tree

65 files changed

+461
-573
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+461
-573
lines changed
 

‎JugAlgo/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
gaudi_add_header_only_library(JugAlgo
99
LINK
10-
Gaudi::GaudiKernel Gaudi::GaudiAlgLib
10+
Gaudi::GaudiKernel
1111
algorithms::core
1212
JugBase
1313
)
@@ -17,7 +17,7 @@ gaudi_add_module(JugAlgoPlugins
1717
SOURCES
1818
${JugAlgoPlugins_sources}
1919
LINK
20-
Gaudi::GaudiKernel Gaudi::GaudiAlgLib
20+
Gaudi::GaudiKernel
2121
JugBase
2222
JugAlgo
2323
algorithms::core

‎JugAlgo/include/JugAlgo/Algorithm.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include <algorithms/algorithm.h>
88
#include <algorithms/type_traits.h>
99

10-
#include <GaudiAlg/GaudiAlgorithm.h>
10+
#include <Gaudi/Algorithm.h>
1111
#include <GaudiKernel/Service.h>
1212
#include <JugAlgo/IAlgoServiceSvc.h>
1313
#include <JugAlgo/detail/DataProxy.h>
@@ -23,7 +23,7 @@
2323

2424
namespace Jug::Algo {
2525

26-
template <class AlgoImpl> class Algorithm : public GaudiAlgorithm {
26+
template <class AlgoImpl> class Algorithm : public Gaudi::Algorithm {
2727
public:
2828
using algo_type = AlgoImpl;
2929
using input_type = typename algo_type::input_type;
@@ -32,7 +32,7 @@ template <class AlgoImpl> class Algorithm : public GaudiAlgorithm {
3232
using Output = typename algo_type::Output;
3333

3434
Algorithm(const std::string& name, ISvcLocator* svcLoc)
35-
: GaudiAlgorithm(name, svcLoc)
35+
: Gaudi::Algorithm(name, svcLoc)
3636
, m_algo{name}
3737
, m_output{this, m_algo.outputNames()}
3838
, m_input{this, m_algo.inputNames()} {
@@ -80,7 +80,7 @@ template <class AlgoImpl> class Algorithm : public GaudiAlgorithm {
8080
return StatusCode::SUCCESS;
8181
}
8282

83-
StatusCode execute() override {
83+
StatusCode execute(const EventContext&) const override {
8484
try {
8585
m_algo.process(m_input.get(), m_output.get());
8686
} catch (const std::exception& e) {

0 commit comments

Comments
 (0)