Skip to content

Commit

Permalink
remove pileup, isr, fsr for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jmduarte committed Mar 6, 2025
1 parent 7e3b9f0 commit 6eadccb
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/HH4b/postprocessing/postprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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")
Expand Down

0 comments on commit 6eadccb

Please sign in to comment.