Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-09-27 07:03:06

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 
0010 extern "C" {
0011 void InitPlugin(JApplication *app) {
0012     InitJANAPlugin(app);
0013     app->ProvideService(std::make_shared<AlgorithmsInit_service>(app));
0014 }
0015 }