Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-15 08:16:24

0001 // Copyright 2022, David Lawrence
0002 // Subject to the terms in the LICENSE file found in the top-level directory.
0003 //
0004 //
0005 
0006 #include <JANA/JApplicationFwd.h>
0007 
0008 #include "TrackPropagationTest_processor.h"
0009 
0010 extern "C" {
0011 void InitPlugin(JApplication* app) {
0012 
0013   // Initializes this plugin
0014   InitJANAPlugin(app);
0015 
0016   // Adds our processor to JANA2 to execute
0017   app->Add(new TrackPropagationTest_processor());
0018 }
0019 }