Skip to content

Commit

Permalink
Fix unused variable in TICLDumper
Browse files Browse the repository at this point in the history
  • Loading branch information
tcuisset committed Jan 29, 2024
1 parent 272f035 commit 794ca59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RecoHGCal/TICL/plugins/TICLDumper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ void TICLDumper::analyze(const edm::Event& event, const edm::EventSetup& setup)

edm::Handle<std::vector<CaloParticle>> caloparticles_h;
event.getByToken(caloparticles_token_, caloparticles_h);
const auto& caloparticles = *caloparticles_h;
//const auto& caloparticles = *caloparticles_h;

auto simclusters_h = event.getHandle(simclusters_token_);

Expand Down

0 comments on commit 794ca59

Please sign in to comment.