Skip to content

Commit

Permalink
IWYU
Browse files Browse the repository at this point in the history
  • Loading branch information
veprbl committed Nov 7, 2024
1 parent 63b9f0e commit 84bc24e
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
3 changes: 2 additions & 1 deletion src/algorithms/onnx/CalorimeterParticleIDPostML.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
#include <edm4eic/EDM4eicVersion.h>

#if EDM4EIC_VERSION_MAJOR >= 8
#include <cstddef>
#include <fmt/core.h>
#include <edm4hep/utils/vector_utils.h>
#include <gsl/pointers>
#include <stdexcept>

#include "CalorimeterParticleIDPostML.h"

Expand Down
3 changes: 3 additions & 0 deletions src/algorithms/onnx/CalorimeterParticleIDPostML.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
#include <edm4eic/MCRecoClusterParticleAssociationCollection.h>
#include <edm4eic/TensorCollection.h>
#include <edm4hep/ParticleIDCollection.h>
#include <optional>
#include <string>
#include <string_view>

#include "algorithms/interfaces/WithPodConfig.h"

Expand Down
7 changes: 6 additions & 1 deletion src/algorithms/onnx/CalorimeterParticleIDPreML.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@
#include <edm4eic/EDM4eicVersion.h>

#if EDM4EIC_VERSION_MAJOR >= 8
#include <fmt/core.h>
#include <cstddef>
#include <edm4hep/MCParticle.h>
#include <edm4hep/Vector3f.h>
#include <edm4hep/utils/vector_utils.h>
#include <cstdint>
#include <stdexcept>
#include <fmt/core.h>
#include <gsl/pointers>

#include "CalorimeterParticleIDPreML.h"
Expand Down
3 changes: 3 additions & 0 deletions src/algorithms/onnx/CalorimeterParticleIDPreML.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
#include <edm4eic/ClusterCollection.h>
#include <edm4eic/MCRecoClusterParticleAssociationCollection.h>
#include <edm4eic/TensorCollection.h>
#include <optional>
#include <string>
#include <string_view>

#include "algorithms/interfaces/WithPodConfig.h"

Expand Down
8 changes: 4 additions & 4 deletions src/algorithms/onnx/ONNXInference.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
#include <edm4eic/EDM4eicVersion.h>

#if EDM4EIC_VERSION_MAJOR >= 8
#include <fmt/core.h>
#include <onnxruntime_c_api.h>
#include <onnxruntime_cxx_api.h>
#include <algorithm>
#include <cstddef>
#include <exception>
#include <fmt/core.h>
#include <gsl/pointers>
#include <iterator>
#include <onnxruntime_c_api.h>
#include <onnxruntime_cxx_api.h>
#include <ostream>
#include <stdexcept>

#include "ONNXInference.h"

Expand Down

0 comments on commit 84bc24e

Please sign in to comment.