File indexing completed on 2025-09-17 08:55:22
0001
0002
0003
0004 #pragma once
0005
0006 #include "algorithms/fardetectors/FarDetectorTransportationPreML.h"
0007 #include "services/algorithms_init/AlgorithmsInit_service.h"
0008 #include "extensions/jana/JOmniFactory.h"
0009
0010 namespace eicrecon {
0011
0012 class FarDetectorTransportationPreML_factory
0013 : public JOmniFactory<FarDetectorTransportationPreML_factory,
0014 FarDetectorTransportationPreMLConfig> {
0015
0016 public:
0017 using AlgoT = eicrecon::FarDetectorTransportationPreML;
0018
0019 private:
0020 std::unique_ptr<AlgoT> m_algo;
0021
0022 PodioInput<edm4eic::Track> m_track_input{this};
0023 PodioInput<edm4eic::MCRecoTrackParticleAssociation> m_association_input{this};
0024 PodioInput<edm4hep::MCParticle> m_beamelectrons_input{this};
0025
0026 PodioOutput<edm4eic::Tensor> m_feature_tensor_output{this};
0027 PodioOutput<edm4eic::Tensor> m_target_tensor_output{this};
0028
0029 ParameterRef<float> m_beamE{this, "beamE", config().beamE};
0030 ParameterRef<bool> m_requireBeamElectron{this, "requireBeamElectron",
0031 config().requireBeamElectron};
0032
0033 public:
0034 void Configure() {
0035 m_algo = std::make_unique<AlgoT>(GetPrefix());
0036 m_algo->level(static_cast<algorithms::LogLevel>(logger()->level()));
0037 m_algo->applyConfig(config());
0038 m_algo->init();
0039 }
0040
0041 void Process(int32_t , uint64_t ) {
0042 m_algo->process({m_track_input(), m_association_input(), m_beamelectrons_input()},
0043 {m_feature_tensor_output().get(), m_target_tensor_output().get()});
0044 }
0045 };
0046
0047 }