File indexing completed on 2025-01-18 10:17:19
0001
0002
0003
0004
0005
0006
0007
0008
0009 #include <JANA/JApplication.h>
0010 #include <JANA/JFactoryGenerator.h>
0011
0012 #include "JTestRootEventSource.h"
0013 #include "JTestRootProcessor.h"
0014 #include "JFactory_Cluster.h"
0015
0016 extern "C" {
0017 void InitPlugin(JApplication* app) {
0018
0019 InitJANAPlugin(app);
0020
0021 LOG << "Loading RootDatamodelExample" << LOG_END;
0022 app->Add(new JTestRootEventSource);
0023 app->Add(new JTestRootProcessor);
0024 app->Add(new JFactoryGeneratorT<JFactory_Cluster>);
0025 }
0026 }
0027