From b913c35d5c69517653b214496d16578574c71f69 Mon Sep 17 00:00:00 2001 From: Juraj Smiesko Date: Tue, 15 Oct 2024 14:43:19 +0200 Subject: [PATCH] Formatting --- standalone/src/DelphesPythia8Common.h | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/standalone/src/DelphesPythia8Common.h b/standalone/src/DelphesPythia8Common.h index ce764de..79c15c8 100644 --- a/standalone/src/DelphesPythia8Common.h +++ b/standalone/src/DelphesPythia8Common.h @@ -24,27 +24,18 @@ void PrintXS(Pythia8::Pythia* pythia) { std::cout << "------------------------------------------------------------------------" << std::endl; std::cout << std::endl; - std::cout << "Pythia8 Cross-section (" - << pythia->info.name() - << "): " - << xsec - << " +/- " - << xsec_err - << " pb\n"; + std::cout << "Pythia8 Cross-section (" << pythia->info.name() << "): " << xsec << " +/- " << xsec_err << " pb\n"; std::cout << std::endl; if (pythia->info.nProcessesLHEF()) { std::cout << "Input LHEF Cross-section:\n"; for (int i = 0; i < pythia->info.nProcessesLHEF(); ++i) { - std::cout << " - " - << pythia->info.nameProc(i) - << ": " - << pythia->info.sigmaLHEF(i) << "\n"; + std::cout << " - " << pythia->info.nameProc(i) << ": " << pythia->info.sigmaLHEF(i) << "\n"; } std::cout << std::endl; if (size(pythia->info.headerKeys())) { std::cout << "Information from LHEF file:\n"; - for (const auto& key: pythia->info.headerKeys()) { + for (const auto& key : pythia->info.headerKeys()) { if (key == "MGGenerationInfo") { std::cout << pythia->info.header(key) << std::endl; }