File indexing completed on 2025-07-27 07:54:08
0001
0002
0003
0004 #pragma once
0005
0006 #include <algorithms/algorithm.h>
0007 #include <edm4eic/ReconstructedParticleCollection.h>
0008 #include <edm4hep/MCParticleCollection.h>
0009 #include <spdlog/logger.h>
0010 #include <memory>
0011
0012 #include "algorithms/interfaces/WithPodConfig.h"
0013
0014 namespace eicrecon {
0015
0016 using MC2ReconstructedParticleAlgorithm =
0017 algorithms::Algorithm<algorithms::Input<edm4hep::MCParticleCollection>,
0018 algorithms::Output<edm4eic::ReconstructedParticleCollection>>;
0019
0020
0021
0022
0023 class MC2ReconstructedParticle : public MC2ReconstructedParticleAlgorithm,
0024 public WithPodConfig<NoConfig> {
0025 public:
0026 MC2ReconstructedParticle(std::string_view name)
0027 : MC2ReconstructedParticleAlgorithm{name,
0028 {"inputMCParticles"},
0029 {"outputReconstructedParticles"},
0030 "Convert truth MC particles into reconstructed particles,"
0031 "optionally applying momentum smearing."} {}
0032
0033
0034 void init() final;
0035
0036
0037 void process(const Input&, const Output&) const final;
0038 };
0039
0040 }