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