File indexing completed on 2025-07-01 07:56:32
0001
0002
0003
0004 #include <JANA/JApplicationFwd.h>
0005 #include <string>
0006
0007 #include "algorithms/interfaces/WithPodConfig.h"
0008 #include "extensions/jana/JOmniFactoryGeneratorT.h"
0009
0010 #include "factories/pid/MatchToRICHPID_factory.h"
0011
0012 extern "C" {
0013 void InitPlugin(JApplication* app) {
0014 InitJANAPlugin(app);
0015
0016 using namespace eicrecon;
0017
0018
0019
0020
0021 app->Add(new JOmniFactoryGeneratorT<MatchToRICHPID_factory>(
0022 "ChargedParticlesWithAssociations",
0023 {
0024 "ReconstructedChargedWithoutPIDParticles",
0025 "ReconstructedChargedWithoutPIDParticleAssociations",
0026 "DRICHMergedIrtCherenkovParticleID",
0027 },
0028 {
0029 "ReconstructedChargedRealPIDParticles",
0030 "ReconstructedChargedRealPIDParticleAssociations",
0031 "ReconstructedChargedRealPIDParticleIDs",
0032 },
0033 app));
0034 }
0035 }