From 63f44b90c9e6bc77ae526ed0de8937d6bc736c78 Mon Sep 17 00:00:00 2001
From: "Patrick L.S. Connor" <patrick.connor@cern.ch>
Date: Wed, 12 Feb 2025 13:38:58 +0100
Subject: [PATCH] removing an ancient cut off to remove high-scale events,
 which was necessary for EOY16 analyses but is no longer justified for later
 ReRecos

---
 Normalisation/bin/applyMClumi.cc | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/Normalisation/bin/applyMClumi.cc b/Normalisation/bin/applyMClumi.cc
index e08b3925..9a280689 100644
--- a/Normalisation/bin/applyMClumi.cc
+++ b/Normalisation/bin/applyMClumi.cc
@@ -96,10 +96,6 @@ void applyMClumi
         [[ maybe_unused ]]
         static auto& cout = steering & DT::verbose ? ::cout : DT::dev_null;
 
-        /// \todo Events with scale > 5TeV are removed because Pythia used to generate too many of them.
-        ///       Check that this is still needed and that the cut is still appropriate.
-        if (genEvt->hard_scale > 5000 /* GeV */) continue;
-
         // sanity check
         if (genEvt->weights.size() != 1 || recEvt->weights.size() != 1)
             BOOST_THROW_EXCEPTION( DE::AnomalousEvent("Unexpected event weights", tIn) );
-- 
GitLab