Skip to content

Commit

Permalink
Attemptr to remove LTO compilation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
civanch committed Aug 19, 2022
1 parent 3344887 commit 999408f
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -32,15 +32,15 @@ namespace hgcal {
float fraction;
};

struct caloParticleOnLayer {
struct caloParticleOnALayer {
unsigned int caloParticleId;
float energy = 0;
std::vector<std::pair<DetId, float>> hits_and_fractions;
std::unordered_map<int, std::pair<float, float>> multiClusterIdToEnergyAndScore;
};

typedef std::vector<std::vector<std::pair<unsigned int, float>>> multiClusterToCaloParticle;
typedef std::vector<std::vector<hgcal::caloParticleOnLayer>> caloParticleToMultiCluster;
typedef std::vector<std::vector<hgcal::caloParticleOnALayer>> caloParticleToMultiCluster;
typedef std::tuple<multiClusterToCaloParticle, caloParticleToMultiCluster> association;
} // namespace hgcal

Expand Down

0 comments on commit 999408f

Please sign in to comment.