From fb70453adcb5619f086f9ef58b5b29ddc6ccb29e Mon Sep 17 00:00:00 2001 From: Birgit Stapf Date: Thu, 19 Dec 2024 17:36:30 +0100 Subject: [PATCH] clang format --- standalone/src/DelphesPythia8Reader.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/standalone/src/DelphesPythia8Reader.h b/standalone/src/DelphesPythia8Reader.h index 5a67fa4..330fce3 100644 --- a/standalone/src/DelphesPythia8Reader.h +++ b/standalone/src/DelphesPythia8Reader.h @@ -58,14 +58,14 @@ class DelphesPythia8Reader : public DelphesInputReader { // jet matching #if PYTHIA_VERSION_INTEGER < 8300 - Pythia8::CombineMatchingInput* combined = 0; - Pythia8::UserHooks* m_matching = 0; + Pythia8::CombineMatchingInput* combined = 0; + Pythia8::UserHooks* matching = 0; - m_matching = combined->getHook(*m_pythia); - if (!m_matching) { + matching = combined->getHook(*m_pythia); + if (!matching) { throw std::runtime_error("can't do matching"); } - m_pythia->setUserHooksPtr(m_matching); + m_pythia->setUserHooksPtr(matching); #else Pythia8::CombineMatchingInput combined; combined.setHook(*m_pythia);