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