Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions DataFormats/ParticleFlowReco/interface/CaloRecHitSoA.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
#ifndef DataFormats_ParticleFlowReco_interface_CaloRecHitSoA_h
#define DataFormats_ParticleFlowReco_interface_CaloRecHitSoA_h

#include <Eigen/Core>
#include <Eigen/Dense>

#include "DataFormats/SoATemplate/interface/SoACommon.h"
#include "DataFormats/SoATemplate/interface/SoALayout.h"

Expand Down
3 changes: 3 additions & 0 deletions DataFormats/ParticleFlowReco/src/alpaka/classes_cuda.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Include Eigen core library before include the SoA definitions
#include <Eigen/Core>

#include "DataFormats/Common/interface/DeviceProduct.h"
#include "DataFormats/Common/interface/Wrapper.h"
#include "DataFormats/ParticleFlowReco/interface/CaloRecHitSoA.h"
Expand Down
3 changes: 3 additions & 0 deletions DataFormats/ParticleFlowReco/src/alpaka/classes_rocm.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Include Eigen core library before include the SoA definitions
#include <Eigen/Core>

#include "DataFormats/Common/interface/DeviceProduct.h"
#include "DataFormats/Common/interface/Wrapper.h"
#include "DataFormats/ParticleFlowReco/interface/CaloRecHitSoA.h"
Expand Down
3 changes: 3 additions & 0 deletions DataFormats/ParticleFlowReco/src/classes_serial.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Include Eigen core library before include the SoA definitions
#include <Eigen/Core>

#include "DataFormats/ParticleFlowReco/interface/CaloRecHitHostCollection.h"
#include "DataFormats/ParticleFlowReco/interface/PFClusterHostCollection.h"
#include "DataFormats/ParticleFlowReco/interface/PFRecHitFractionHostCollection.h"
Expand Down
3 changes: 3 additions & 0 deletions DataFormats/ParticleFlowReco/src/classes_serial.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Include Eigen core library before include the SoA definitions
#include <Eigen/Core>

#include "DataFormats/Common/interface/Wrapper.h"
#include "DataFormats/ParticleFlowReco/interface/CaloRecHitHostCollection.h"
#include "DataFormats/ParticleFlowReco/interface/CaloRecHitSoA.h"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#ifndef RecoParticleFlow_PFClusterProducer_PFClusterProducerAlpakaKernel_h
#define RecoParticleFlow_PFClusterProducer_PFClusterProducerAlpakaKernel_h

// Include Eigen core library before include the SoA definitions
#include <Eigen/Core>

#include "DataFormats/ParticleFlowReco/interface/alpaka/PFClusterDeviceCollection.h"
#include "DataFormats/ParticleFlowReco/interface/alpaka/PFRecHitDeviceCollection.h"
#include "DataFormats/ParticleFlowReco/interface/alpaka/PFRecHitFractionDeviceCollection.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,23 @@

#include <limits>

// Include Eigen core library before include the SoA definitions
#include <Eigen/Core>

#include "DataFormats/DetId/interface/DetId.h"
#include "DataFormats/EcalDetId/interface/EcalSubdetector.h"
#include "DataFormats/EcalRecHit/interface/EcalRecHit.h"
#include "DataFormats/HcalDetId/interface/HcalDetId.h"
#include "DataFormats/HcalDetId/interface/HcalSubdetector.h"
#include "DataFormats/HcalRecHit/interface/HBHERecHit.h"
#include "DataFormats/HcalRecHit/interface/HcalRecHitHostCollection.h"
#include "DataFormats/HcalRecHit/interface/alpaka/HcalRecHitDeviceCollection.h"
#include "DataFormats/ParticleFlowReco/interface/CaloRecHitHostCollection.h"
#include "DataFormats/ParticleFlowReco/interface/alpaka/CaloRecHitDeviceCollection.h"
#include "RecoParticleFlow/PFRecHitProducer/interface/PFRecHitTopologyHostCollection.h"
#include "RecoParticleFlow/PFRecHitProducer/interface/alpaka/PFRecHitParamsDeviceCollection.h"
#include "RecoParticleFlow/PFRecHitProducer/interface/alpaka/PFRecHitTopologyDeviceCollection.h"

#include "DataFormats/HcalRecHit/interface/HcalRecHitHostCollection.h"
#include "DataFormats/HcalRecHit/interface/alpaka/HcalRecHitDeviceCollection.h"

// Forward declaration of EventSetup records, to avoid propagating the dependency on framework headers to device code
class PFRecHitHCALParamsRecord;
class PFRecHitHCALTopologyRecord;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
#include <utility>
#include <variant>

// Include Eigen core library before include the SoA definitions
#include <Eigen/Core>

#include "DQMServices/Core/interface/DQMEDAnalyzer.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "DataFormats/Common/interface/Handle.h"
Expand Down