Skip to content

Commit

Permalink
fix: {edm4eic -> edm4hep}::RawCalorimeterHit
Browse files Browse the repository at this point in the history
  • Loading branch information
wdconinc committed Jul 27, 2024
1 parent 400d0cb commit ae133d0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 11 deletions.
2 changes: 0 additions & 2 deletions JugDigi/src/components/CalorimeterBirksCorr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@

// Event Model related classes
#include "edm4hep/SimCalorimeterHitCollection.h"
#include "edm4eic/RawCalorimeterHitCollection.h"
#include "edm4eic/RawCalorimeterHitData.h"


using namespace Gaudi::Units;
Expand Down
5 changes: 2 additions & 3 deletions JugDigi/src/components/CalorimeterHitDigi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@

// Event Model related classes
#include "edm4hep/SimCalorimeterHitCollection.h"
#include "edm4eic/RawCalorimeterHitCollection.h"
#include "edm4eic/RawCalorimeterHitData.h"
#include "edm4hep/RawCalorimeterHitCollection.h"


using namespace Gaudi::Units;
Expand Down Expand Up @@ -83,7 +82,7 @@ namespace Jug::Digi {

DataHandle<edm4hep::SimCalorimeterHitCollection> m_inputHitCollection{
"inputHitCollection", Gaudi::DataHandle::Reader, this};
DataHandle<edm4eic::RawCalorimeterHitCollection> m_outputHitCollection{
DataHandle<edm4hep::RawCalorimeterHitCollection> m_outputHitCollection{
"outputHitCollection", Gaudi::DataHandle::Writer, this};

// ill-formed: using GaudiAlgorithm::GaudiAlgorithm;
Expand Down
1 change: 0 additions & 1 deletion JugFast/src/components/TruthClustering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
#include "edm4eic/CalorimeterHitCollection.h"
#include "edm4eic/ClusterCollection.h"
#include "edm4eic/ProtoClusterCollection.h"
#include "edm4eic/RawCalorimeterHitCollection.h"

using namespace Gaudi::Units;

Expand Down
4 changes: 2 additions & 2 deletions JugReco/src/components/CalorimeterHitReco.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

// Event Model related classes
#include "edm4eic/CalorimeterHitCollection.h"
#include "edm4eic/RawCalorimeterHitCollection.h"
#include "edm4hep/RawCalorimeterHitCollection.h"

using namespace Gaudi::Units;

Expand Down Expand Up @@ -62,7 +62,7 @@ class CalorimeterHitReco : public GaudiAlgorithm {
double thresholdADC{0};
double stepTDC{0};

DataHandle<edm4eic::RawCalorimeterHitCollection> m_inputHitCollection{"inputHitCollection", Gaudi::DataHandle::Reader,
DataHandle<edm4hep::RawCalorimeterHitCollection> m_inputHitCollection{"inputHitCollection", Gaudi::DataHandle::Reader,
this};
DataHandle<edm4eic::CalorimeterHitCollection> m_outputHitCollection{"outputHitCollection", Gaudi::DataHandle::Writer,
this};
Expand Down
4 changes: 2 additions & 2 deletions JugReco/src/components/ImagingPixelReco.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

// Event Model related classes
#include "edm4eic/CalorimeterHitCollection.h"
#include "edm4eic/RawCalorimeterHitCollection.h"
#include "edm4hep/RawCalorimeterHitCollection.h"

using namespace Gaudi::Units;

Expand Down Expand Up @@ -60,7 +60,7 @@ class ImagingPixelReco : public GaudiAlgorithm {
double dyRangeADC{0};

// hits containers
DataHandle<edm4eic::RawCalorimeterHitCollection> m_inputHitCollection{"inputHitCollection", Gaudi::DataHandle::Reader,
DataHandle<edm4hep::RawCalorimeterHitCollection> m_inputHitCollection{"inputHitCollection", Gaudi::DataHandle::Reader,
this};
DataHandle<edm4eic::CalorimeterHitCollection> m_outputHitCollection{"outputHitCollection", Gaudi::DataHandle::Writer,
this};
Expand Down
1 change: 0 additions & 1 deletion JugReco/src/components/SimpleClustering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#include "edm4eic/CalorimeterHitCollection.h"
#include "edm4eic/ClusterCollection.h"
#include "edm4eic/ProtoClusterCollection.h"
#include "edm4eic/RawCalorimeterHitCollection.h"
#include "edm4hep/utils/vector_utils.h"

using namespace Gaudi::Units;
Expand Down

0 comments on commit ae133d0

Please sign in to comment.