Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:01:43

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2022 Sylvester Joosten
0003 
0004 #pragma once
0005 
0006 #include <GaudiKernel/IService.h>
0007 
0008 // Juggler bindings for all required algorithms services
0009 // Will setup all necessary services (using the algorithms::ServiceSvc)
0010 
0011 class GAUDI_API IAlgoServiceSvc : virtual public IService {
0012 public:
0013   DeclareInterfaceID(IAlgoServiceSvc, 1, 0);
0014   virtual ~IAlgoServiceSvc() {}
0015   // No actual API needed, as this service will do all the magic behind the screens
0016 };