From 6eadccbbf276c02be01518f06093c9e461a02363 Mon Sep 17 00:00:00 2001 From: Javier Duarte Date: Thu, 6 Mar 2025 07:38:20 -0800 Subject: [PATCH] remove pileup, isr, fsr for now --- src/HH4b/postprocessing/postprocessing.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/HH4b/postprocessing/postprocessing.py b/src/HH4b/postprocessing/postprocessing.py index 8b49f07b..79dc57df 100644 --- a/src/HH4b/postprocessing/postprocessing.py +++ b/src/HH4b/postprocessing/postprocessing.py @@ -159,6 +159,11 @@ class Region: (f"bbFatJetPt_{jshift}", 2), (f"VBFJetPt_{jshift}", 2), ] +# load scale and pdf weights +load_columns_syst += [ + ("scale_weights", 6), + ("pdf_weights", 103), +] # only the BG MC samples that are used in the fits fit_bgs = ["ttbar", "vhtobb", "diboson", "vjets", "tthtobb"] @@ -177,11 +182,11 @@ def get_weight_shifts(txbb_version: str, bdt_version: str): "TXbbSF_correlated": Syst( samples=sig_keys, label="TXbb SF correlated", years=years + ["2022-2023"] ), - "pileup": Syst(samples=fit_mcs, label="Pileup"), + # "pileup": Syst(samples=fit_mcs, label="Pileup"), "scale": Syst(samples=sig_keys + ["ttbar"], label="QCDScaleAcc"), "pdf": Syst(samples=sig_keys, label="PDFAcc"), - "ISRPartonShower": Syst(samples=sig_keys, label="ISR Parton Shower"), - "FSRPartonShower": Syst(samples=sig_keys, label="FSR Parton Shower"), + # "ISRPartonShower": Syst(samples=sig_keys, label="ISR Parton Shower"), + # "FSRPartonShower": Syst(samples=sig_keys, label="FSR Parton Shower"), } ttsf_xbb_bins = ttbarsfs_decorr_txbb_bins.get(txbb_version, "glopart-v2")