Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-02 07:54:38

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2024 Wouter Deconinck
0003 
0004 #include <JANA/JApplication.h>
0005 #include <memory>
0006 
0007 #include "AlgorithmsInit_service.h"
0008 
0009 extern "C" {
0010 void InitPlugin(JApplication* app) {
0011   InitJANAPlugin(app);
0012   app->ProvideService(std::make_shared<AlgorithmsInit_service>(app));
0013 }
0014 }