Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-05 08:52:42

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2024 - 2025, Simon Gardner
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::TrackParameters> m_trackparam_input{this};
0023   PodioInput<edm4hep::MCParticle> m_scatteredelectrons_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<bool> m_requireBeamElectron{this, "requireBeamElectron",
0030                                            config().requireBeamElectron};
0031 
0032 public:
0033   void Configure() {
0034     m_algo = std::make_unique<AlgoT>(GetPrefix());
0035     m_algo->level(static_cast<algorithms::LogLevel>(logger()->level()));
0036     m_algo->applyConfig(config());
0037     m_algo->init();
0038   }
0039 
0040   void ChangeRun(int32_t /* run_number */) {}
0041 
0042   void Process(int32_t /* run_number */, uint64_t /* event_number */) {
0043     m_algo->process({m_trackparam_input(), m_scatteredelectrons_input(), m_beamelectrons_input()},
0044                     {m_feature_tensor_output().get(), m_target_tensor_output().get()});
0045   }
0046 };
0047 
0048 } // namespace eicrecon