Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 10:13:05

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2022, 2023 Sylvester Joosten, Dmitry Romanov, Wouter Deconinck
0003 
0004 #pragma once
0005 
0006 #include <algorithms/algorithm.h>
0007 #include <edm4eic/InclusiveKinematicsCollection.h>
0008 #include <edm4hep/MCParticleCollection.h>
0009 #include <string>
0010 #include <string_view>
0011 
0012 #include "algorithms/interfaces/WithPodConfig.h"
0013 #include "services/particle/ParticleSvc.h"
0014 
0015 namespace eicrecon {
0016 
0017 using InclusiveKinematicsTruthAlgorithm =
0018     algorithms::Algorithm<algorithms::Input<edm4hep::MCParticleCollection>,
0019                           algorithms::Output<edm4eic::InclusiveKinematicsCollection>>;
0020 
0021 class InclusiveKinematicsTruth : public InclusiveKinematicsTruthAlgorithm,
0022                                  public WithPodConfig<NoConfig> {
0023 
0024 public:
0025   InclusiveKinematicsTruth(std::string_view name)
0026       : InclusiveKinematicsTruthAlgorithm{
0027             name,
0028             {"MCParticles"},
0029             {"inclusiveKinematics"},
0030             "Determine inclusive kinematics from truth information."} {}
0031 
0032   void init() final;
0033   void process(const Input&, const Output&) const final;
0034 
0035 private:
0036   const algorithms::ParticleSvc& m_particleSvc = algorithms::ParticleSvc::instance();
0037 };
0038 
0039 } // namespace eicrecon