Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-05 08:02:24

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2024 Chun Yuen Tsang
0003 
0004 #pragma once
0005 
0006 #include "extensions/jana/JOmniFactory.h"
0007 
0008 #include "algorithms/digi/LGADPulseGeneration.h"
0009 #include <iostream>
0010 
0011 namespace eicrecon {
0012 
0013 class LGADPulseGeneration_factory
0014     : public JOmniFactory<LGADPulseGeneration_factory, LGADPulseGenerationConfig> {
0015 public:
0016   using AlgoT = eicrecon::LGADPulseGeneration;
0017 
0018 private:
0019   std::unique_ptr<AlgoT> m_algo;
0020 
0021   PodioInput<edm4hep::SimTrackerHit> m_in_sim_track{this};
0022 
0023   PodioOutput<edm4hep::RawTimeSeries> m_out_reco_particles{this};
0024 
0025   ParameterRef<double> m_Vm{this, "Vm", config().Vm};
0026   ParameterRef<double> m_tMax{this, "tMax", config().tMax};
0027   ParameterRef<int> m_adc_range{this, "adcRange", config().adc_range};
0028   ParameterRef<int> m_tdc_range{this, "tdcRange", config().tdc_range};
0029   ParameterRef<double> m_ignore_thres{this, "ignoreThreshold", config().ignore_thres};
0030 
0031   Service<AlgorithmsInit_service> m_algorithmsInit{this};
0032 
0033 public:
0034   void Configure() {
0035     m_algo = std::make_unique<eicrecon::LGADPulseGeneration>(GetPrefix());
0036     m_algo->level(static_cast<algorithms::LogLevel>(logger()->level()));
0037     m_algo->applyConfig(config());
0038     m_algo->init();
0039   }
0040 
0041   void ChangeRun(int64_t run_number) {}
0042 
0043   void Process(int64_t run_number, uint64_t event_number) {
0044     m_algo->process({m_in_sim_track()}, {m_out_reco_particles().get()});
0045   }
0046 };
0047 
0048 } // namespace eicrecon