From 794ca59b5fb10f88d500b84ef64e221a6dc427fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o?= Date: Mon, 29 Jan 2024 21:37:24 +0000 Subject: [PATCH] Fix unused variable in TICLDumper --- RecoHGCal/TICL/plugins/TICLDumper.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RecoHGCal/TICL/plugins/TICLDumper.cc b/RecoHGCal/TICL/plugins/TICLDumper.cc index c4a006fa397d1..daf3b5572ae51 100644 --- a/RecoHGCal/TICL/plugins/TICLDumper.cc +++ b/RecoHGCal/TICL/plugins/TICLDumper.cc @@ -1020,7 +1020,7 @@ void TICLDumper::analyze(const edm::Event& event, const edm::EventSetup& setup) edm::Handle> 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_);