Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-07-03 07:05:28

0001 // Copyright (C) 2022, Christopher Dilks
0002 // Subject to the terms in the LICENSE file found in the top-level directory.
0003 //
0004 //
0005 
0006 #include <JANA/JApplication.h>
0007 #include <memory>
0008 
0009 #include "RichGeo_service.h"
0010 
0011 extern "C" {
0012   void InitPlugin(JApplication *app) {
0013     InitJANAPlugin(app);
0014     app->ProvideService(std::make_shared<RichGeo_service>(app) );
0015   }
0016 }