Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions data/lhc-hxswg/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
This folder contains easily accessible numbers for (B)SM Higgs predictions from the [LHCHXSWG](https://twiki.cern.ch/twiki/bin/view/LHCPhysics/LHCHXSWG).

Cross-sections and Branching ratios are sourced from the excel spreadsheet [here](https://twiki.cern.ch/twiki/pub/LHCPhysics/LHCHXSWG/Higgs_XSBR_YR4_update.xlsx), which you will also find in this directory.
Cross-sections and Branching ratios are sourced from the excel spreadsheet [here](https://gitlab.cern.ch/LHCHIGGSXS/LHCHXSWG1/crosssections), which you will also find in this directory. These are to be used in the YR5 report.

For the coupling modifiers (kappa framework), under the `couplings` directory, the coefficients for the scaling functions are taken from the [this Twiki](https://twiki.cern.ch/twiki/bin/view/LHCPhysics/LHCHXSWG2KAPPA).
For the coupling modifiers (kappa framework), under the `couplings` directory, the coefficients for the scaling functions are taken from the [this Twiki](https://twiki.cern.ch/twiki/bin/view/LHCPhysics/LHCHXSWG2KAPPA). Note that these are not updated yet for YR5

A few important notes are below for using these numbers.

Expand All @@ -12,6 +12,7 @@ Announced in HN: https://hypernews.cern.ch/HyperNews/CMS/get/higgs/1738.html
- The ggH SM x-sections are calculated at N3LO, in these files, the uncertainty "Gauss" should be used for the scale uncertainty
- The ZH cross-section include the contribution from ggZH but ggZH is also provided separately so that a subtraction of ZH-ggZH will give the normalisation of qqZH
- There are numbers provided separately for the cross-sections of (W+)H and (W-)H in addition to the sum of the two (these are the LAST two columns inside 13TeV-WH.txt).
- Separate numbers for PDF and alpha_S are also provided:
- The tHW cross-sections given are repeated from the value at 125.0 GeV. This is only to allow bulding a spline.
- The tHW cross-sections given are repeated from the value at 125.0 GeV. This is only to allow bulding a spline. These numbers are from YR4
- The cross-sections and branching ratios are also provided inside `RooWorkspaces` as splines for your convenience as a function of `MH`. You can use these inside your datacards using `rateParams` to normalise the different Higgs processes. An example datacard is provided in `data/tutorials/rate_params/simple_sm_datacard.txt`.

Please see the full set of notes from [here](https://gitlab.cern.ch/LHCHIGGSXS/LHCHXSWG1/crosssections) for all details.
Comment on lines +15 to +18

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

The notes still describe removed tHW inputs.

This migration switches the supported tH channels to tH_schan/tH_tchan, and data/lhc-hxswg/sm/makeAllSMSplines.C no longer builds tHW. Keeping this YR4-specific note here will send readers to the wrong inputs for YR5.

🧰 Tools
🪛 LanguageTool

[grammar] ~15-~15: Ensure spelling is correct
Context: ...lue at 125.0 GeV. This is only to allow bulding a spline. These numbers are from YR4 - ...

(QB_NEW_EN_ORTHOGRAPHY_ERROR_IDS_1)

🪛 markdownlint-cli2 (0.22.1)

[warning] 18-18: Link text should be descriptive

(MD059, descriptive-link-text)

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@data/lhc-hxswg/README.md` around lines 15 - 18, Update the README note that
references removed tHW inputs: remove or revise the sentence stating "The tHW
cross-sections given are repeated..." and any YR4-specific guidance that points
readers to tHW, and instead reference the current tH channel names (tH_schan and
tH_tchan) and the updated spline-generation source (makeAllSMSplines.C) so
readers are directed to the YR5 inputs and correct spline creation; ensure the
example datacard/rateParams guidance remains accurate for using the
tH_schan/tH_tchan splines.

106 changes: 71 additions & 35 deletions data/lhc-hxswg/makeSMtables.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,32 @@

import xlrd

stdHeading = ("mH_GeV", "XS_pb", "Sca_Hi", "Sca_Lo", "Pdf_alpha_s", "Pdf", "alpha_s")
stdHeading = ("mH_GeV", "XS_pb", "Sca_Hi", "Sca_Lo", "Pdf_alpha_s", "Total_pos", "Total_neg")
xsecGroups = {
"ggH": {"col": "A", "heading": stdHeading},
"VBF": {"col": "I", "heading": stdHeading},
"WH": {"col": "Q", "heading": stdHeading + ("XS_WplusH_pb", "XS_WminusH_pb")},
"ZH": {"col": "AA", "heading": stdHeading + ("XS_ggZH_pb",)},
"ttH": {"col": "AJ", "heading": stdHeading},
"ggH": {"col": "A", "heading": ("mH_GeV", "XS_pb", "Sca_Hi", "Sca_Lo", "Pdf_minus_TH","Gauss","Pdf_alpha_s", "Total_pos", "Total_neg")},
"vbfH": {"col": "L", "heading": stdHeading},
"WH": {"col": "T", "heading": stdHeading + ("XS_WplusH_pb", "XS_WminusH_pb")},
"ZH": {"col": "AD", "heading": stdHeading + ("XS_ggZH_pb",)},
"ttH": {"col": "AM", "heading": stdHeading},
"bbH": {
"col": "AR",
"heading": ("mH_GeV", "XS_pb", "Sca_Pdf_mb_mub_Hi", "Sca_Pdf_mb_mub_Lo"),
"col": "AU",
"heading": ("mH_GeV", "XS_pb", "Sca_Hi", "Sca_Lo", "Pdf_as_mb", "Total_pos", "Total_neg"),
},
"tH_tchan": {"col": "AZ", "heading": stdHeading + ("XS_tH_pb", "XS_tbarH_pb")},
"tH_schan": {"col": "BJ", "heading": stdHeading + ("XS_tH_pb", "XS_tbarH_pb")},
"tH_tchan": {"col": "BC", "heading": stdHeading + ("XS_tH_pb", "XS_tbarH_pb")},
"tH_schan": {"col": "BM", "heading": stdHeading + ("XS_tH_pb", "XS_tbarH_pb")},
"ggZH": {"col": "AD", "heading": ("mH_GeV", "SKIP", "SKIP", "SKIP", "SKIP", "SKIP", "SKIP", "XS_pb")},
# 'total': {'col':'BT', 'heading':('XS_pb',)},
"WminusH_lv": {"col": "BX", "heading": stdHeading + ("XS_gamma_pb",)},
"WplusH_lv": {"col": "CG", "heading": stdHeading + ("XS_gamma_pb",)},
"ZH_ll": {"col": "CP", "heading": stdHeading + ("XS_ggZH_pb", "XS_gamma_pb")},
"ZH_vv": {"col": "CZ", "heading": stdHeading + ("XS_ggZH_pb", "XS_gamma_pb")},
"VBF_qqH_schan": {"col": "DJ", "heading": ("mH_GeV", "XS_pb")},
#"WminusH_lv": {"col": "BX", "heading": stdHeading + ("XS_gamma_pb",)},
#"WplusH_lv": {"col": "CG", "heading": stdHeading + ("XS_gamma_pb",)},
#"ZH_ll": {"col": "CP", "heading": stdHeading + ("XS_ggZH_pb", "XS_gamma_pb")},
#"ZH_vv": {"col": "CZ", "heading": stdHeading + ("XS_ggZH_pb", "XS_gamma_pb")},
#"VBF_qqH_schan": {"col": "DJ", "heading": ("mH_GeV", "XS_pb")},
}

reducedHeading = ("mH_GeV", "XS_pb", "Sca_Hi", "Sca_Lo", "Pdf_alpha_s")
xsecGroupsBSM = {
"ggH": {"col": "A", "heading": stdHeading + ("1_plus_dEW",)},
"VBF": {"col": "J", "heading": stdHeading},
"vbfH": {"col": "J", "heading": stdHeading},
"WH": {"col": "S", "heading": reducedHeading},
"ZH": {"col": "AD", "heading": reducedHeading},
"bbH": {
Expand All @@ -39,39 +40,43 @@
}

specs = {
"YR4 SM 7TeV": {
"7 TeV": {
"rows": (6, 43),
"groups": xsecGroups,
},
"YR4 SM 8TeV": {
"8 TeV": {
"rows": (6, 43),
"groups": xsecGroups,
},
"YR4 SM 13TeV": {
"13 TeV": {
"rows": (6, 43),
"groups": xsecGroups,
},
"YR4 SM 14TeV": {
"13.6 TeV": {
"rows": (6, 43),
"groups": xsecGroups,
},
"YR4 BSM 7TeV": {
"14 TeV": {
"rows": (6, 43),
"groups": xsecGroups,
},
"BSM 7TeV": {
"rows": (6, 119),
"groups": xsecGroupsBSM,
},
"YR4 BSM 8TeV": {
"BSM 8TeV": {
"rows": (6, 119),
"groups": xsecGroupsBSM,
},
"YR4 BSM 13TeV": {
"BSM 13TeV": {
"rows": (6, 119),
"groups": xsecGroupsBSM,
},
"YR4 BSM 14TeV": {
"BSM 14TeV": {
"rows": (6, 119),
"groups": xsecGroupsBSM,
},
"YR4 SM BR": {
"SM BR": {
"rows": (7, 44),
"groups": {
"BR1": {
Expand Down Expand Up @@ -185,11 +190,18 @@


# import prettytable
def print_table(table):
def print_table(table, save_file=None):
col_width = [max(len(x) for x in col) for col in zip(*table)]
for line in table:
print(" ".join("{:{}}".format(x, col_width[i]) for i, x in enumerate(line)))

# if given option, save_file, then also save to the file given too
if save_file is not None:
with open(save_file, "w") as f:
for line in table:
f.write(" ".join("{:{}}".format(x, col_width[i]) for i, x in enumerate(line)) + "\n")
print(f"Saved table to {save_file}")


# Based on http://stackoverflow.com/a/12640614/665025
def col2num(col_str):
Expand All @@ -202,17 +214,28 @@ def col2num(col_str):
return col_num


# import urllib2
# response = urllib2.urlopen('https://twiki.cern.ch/twiki/pub/LHCPhysics/CERNYellowReportPageAt8TeV/Higgs_XSBR_YR3.xlsx')
# f = xlrd.open_workbook(file_contents=response.read())

def find_filename(sheet_name, group_name):
# given the sheet name and group name, find which of the dictionary keys match
# and return the filename in the format sm/xs/{sheet_name}/{group_name}.txt
for key in specs.keys():
if key in sheet_name:
for group_key in specs[key]["groups"].keys():
if group_key in group_name:
if "BR" in group_key:
filename = f"sm/br/{group_name}.txt"
else:
xsfoldername = sheet_name.replace(" ", "")
filename = f"sm/xs/{xsfoldername}/{xsfoldername}-{group_name}.txt"
return filename

def formatval(v):
try:
# This is to remove pesky unicode symbols like \pm
v = float(v.encode("ascii", "ignore"))
except AttributeError:
pass
# want to have at most 4 decimal digits.
v = round(v, 4)
return "{:+}".format(v)


Expand All @@ -231,21 +254,28 @@ def main(o):
# open output
# dump heading
heading = props["heading"]
table.append(heading)
real_heading = [h for h in heading if h != "SKIP"]
table.append(real_heading)
startRow, endRow = spec["rows"]
for r in range(startRow - 1, endRow):
offset = col2num(props["col"]) - 1
vals = s.row_values(r)[offset : offset + len(heading)]
# remove headers that say "SKIP"
vals_keep = []
for i, v in enumerate(vals):
if heading[i] == "SKIP":
continue
vals_keep.append(v)
if set(vals[1:]) == set(("",)):
continue
try:
table.append(list(map(formatval, vals)))
table.append(list(map(formatval, vals_keep)))
except ValueError:
print("Could not parse the followig tuple: ")
print(vals)
print(vals_keep)
raise

print_table(table)
file_name=find_filename(s.name,group)
print_table(table, save_file=file_name)


if __name__ == "__main__":
Expand All @@ -261,6 +291,12 @@ def main(o):
metavar="LEVEL",
help="Set the minimum logging level.",
)
parser.add_option(
"-s",
"--savefiles",
action="store_true",
help="Whether to save the tables to files in the sm directory.",
)

o, args = parser.parse_args()

Expand Down
27 changes: 14 additions & 13 deletions data/lhc-hxswg/sm/makeAllSMSplines.C
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

const std::string location = "./"; //"$CMSSW_BASE/src/HiggsAnalysis/CombinedLimit/data/lhc-hxswg/sm/";
const int nxs = 9;
const int nxs = 7;
const int nbr = 11;
const int nbr4f = 14;

Expand Down Expand Up @@ -35,30 +35,30 @@ void makeBRSplines(){
fout->Close();
}

void makeXSSplines(int sqrts=13){
void makeXSSplines(std::string sqrts="13"){

TFile *fout = new TFile(Form("sm_yr4_%dTeV.root",sqrts),"RECREATE");
RooWorkspace ws(Form("xs_%dTeV",sqrts),Form("xs_%dTeV",sqrts));
TFile *fout = new TFile(Form("sm_yr5_%sTeV.root",sqrts.c_str()),"RECREATE");
RooWorkspace ws(Form("xs_%sTeV",sqrts.c_str()),Form("xs_%sTeV",sqrts.c_str()));

RooRealVar MH("MH","MH",125.09,120,130); MH.setConstant();

std::string xs[nxs] = {"WH","ZH","bbH","ggH","ttH","vbfH","ggZH","tHW","tHq"};
std::string xs[nxs] = {"WH","ZH","bbH","ggH","ttH","vbfH","ggZH"}; //"tHW","tHq"};

for (int xsi=0;xsi<nxs;xsi++){
std::string name = xs[xsi];
if (name=="WH"){
RooSpline1D splineP(Form("WplusH_%dTeV",sqrts),Form("file %dTeV/%dTeV-%s.txt, x=%d, y=%d",sqrts,sqrts,name.c_str(),0,7),MH,Form("%s/xs/%dTeV/%dTeV-%s.txt",location.c_str(),sqrts,sqrts,name.c_str()),0,7,1,"CSPLINE");
RooSpline1D splineM(Form("WminusH_%dTeV",sqrts),Form("file %dTeV/%dTeV-%s.txt, x=%d, y=%d",sqrts,sqrts,name.c_str(),0,8),MH,Form("%s/xs/%dTeV/%dTeV-%s.txt",location.c_str(),sqrts,sqrts,name.c_str()),0,8,1,"CSPLINE");
RooSpline1D splineP(Form("WplusH_%sTeV",sqrts.c_str()),Form("file %sTeV/%sTeV-%s.txt, x=%d, y=%d",sqrts.c_str(),sqrts.c_str(),name.c_str(),0,7),MH,Form("%s/xs/%sTeV/%sTeV-%s.txt",location.c_str(),sqrts.c_str(),sqrts.c_str(),name.c_str()),0,7,1,"CSPLINE");
RooSpline1D splineM(Form("WminusH_%sTeV",sqrts.c_str()),Form("file %sTeV/%sTeV-%s.txt, x=%d, y=%d",sqrts.c_str(),sqrts.c_str(),name.c_str(),0,8),MH,Form("%s/xs/%sTeV/%sTeV-%s.txt",location.c_str(),sqrts.c_str(),sqrts.c_str(),name.c_str()),0,8,1,"CSPLINE");
ws.import(splineM);
ws.import(splineP);

}
RooSpline1D spline(Form("%s_%dTeV",name.c_str(),sqrts),Form("file %dTeV/%dTeV-%s.txt, x=%d, y=%d",sqrts,sqrts,name.c_str(),0,1),MH,Form("%s/xs/%dTeV/%dTeV-%s.txt",location.c_str(),sqrts,sqrts,name.c_str()),0,1,1,"CSPLINE");
RooSpline1D spline(Form("%s_%sTeV",name.c_str(),sqrts.c_str()),Form("file %sTeV/%sTeV-%s.txt, x=%d, y=%d",sqrts.c_str(),sqrts.c_str(),name.c_str(),0,1),MH,Form("%s/xs/%sTeV/%sTeV-%s.txt",location.c_str(),sqrts.c_str(),sqrts.c_str(),name.c_str()),0,1,1,"CSPLINE");
ws.import(spline);
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
}

// make the spline for qqZH
RooFormulaVar spline_qqZH(Form("qqZH_%dTeV",sqrts),Form("qqZH (ZH-ggZH) - %dTeV",sqrts),"@0-@1",RooArgList(*ws.function(Form("ZH_%dTeV",sqrts)),*ws.function(Form("ggZH_%dTeV",sqrts))));
RooFormulaVar spline_qqZH(Form("qqZH_%sTeV",sqrts.c_str()),Form("qqZH (ZH-ggZH) - %sTeV",sqrts.c_str()),"@0-@1",RooArgList(*ws.function(Form("ZH_%sTeV",sqrts.c_str())),*ws.function(Form("ggZH_%sTeV",sqrts.c_str()))));
ws.import(spline_qqZH);

ws.Print();
Expand All @@ -72,10 +72,11 @@ void makeAllSMSplines(){
gROOT->ProcessLine(".L $CMSSW_BASE/lib/$SCRAM_ARCH/libHiggsAnalysisCombinedLimit.so");

// Make XS
makeXSSplines(14);
makeXSSplines(13);
makeXSSplines(8);
makeXSSplines(7);
makeXSSplines("14");
makeXSSplines("13.6");
makeXSSplines("13");
makeXSSplines("8");
makeXSSplines("7");

// And BR
makeBRSplines();
Expand Down
Binary file added data/lhc-hxswg/sm/sm_yr5_13.6TeV.root
Binary file not shown.
Binary file added data/lhc-hxswg/sm/sm_yr5_13TeV.root
Binary file not shown.
Binary file added data/lhc-hxswg/sm/sm_yr5_14TeV.root
Binary file not shown.
Binary file added data/lhc-hxswg/sm/sm_yr5_7TeV.root
Binary file not shown.
Binary file added data/lhc-hxswg/sm/sm_yr5_8TeV.root
Binary file not shown.
15 changes: 15 additions & 0 deletions data/lhc-hxswg/sm/xs/13.6TeV/13.6TeV-WH.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
mH_GeV XS_pb Sca_Hi Sca_Lo Pdf_alpha_s Total_pos Total_neg XS_WplusH_pb XS_WminusH_pb
+120.0 +1.6729 +0.459 -0.726 +1.844 +1.9003 -1.9818 +1.0233 +0.6496
+122.0 +1.5868 +0.466 -0.729 +1.848 +1.9058 -1.9866 +0.9714 +0.6154
+124.0 +1.5062 +0.48 -0.739 +1.855 +1.9161 -1.9968 +0.9227 +0.5834
+124.6 +1.483 +0.467 -0.744 +1.862 +1.9197 -2.0051 +0.9088 +0.5742
+124.8 +1.4755 +0.468 -0.746 +1.868 +1.9257 -2.0115 +0.9042 +0.5712
+125.0 +1.4678 +0.477 -0.739 +1.876 +1.9357 -2.0163 +0.8995 +0.5682
+125.09 +1.4643 +0.479 -0.738 +1.868 +1.9284 -2.0085 +0.8975 +0.5668
+125.2 +1.4602 +0.486 -0.732 +1.876 +1.9379 -2.0138 +0.895 +0.5652
+125.3 +1.4565 +0.478 -0.741 +1.871 +1.9311 -2.0124 +0.8927 +0.5637
+125.38 +1.4534 +0.478 -0.736 +1.87 +1.9301 -2.0096 +0.891 +0.5625
+125.6 +1.4451 +0.485 -0.738 +1.865 +1.927 -2.0057 +0.8859 +0.5593
+126.0 +1.4303 +0.482 -0.741 +1.863 +1.9243 -2.005 +0.8769 +0.5534
+128.0 +1.3591 +0.488 -0.749 +1.878 +1.9404 -2.0219 +0.8339 +0.5252
+130.0 +1.2922 +0.508 -0.753 +1.88 +1.9474 -2.0252 +0.7934 +0.4988
15 changes: 15 additions & 0 deletions data/lhc-hxswg/sm/xs/13.6TeV/13.6TeV-ZH.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
mH_GeV XS_pb Sca_Hi Sca_Lo Pdf_alpha_s Total_pos Total_neg XS_ggZH_pb
+120.0 +1.066 +2.7 -2.5 +1.63 +3.1539 -2.9844 +0.1376
+122.0 +1.017 +2.8 -2.6 +1.64 +3.2449 -3.074 +0.1348
+124.0 +0.9707 +2.8 -2.6 +1.63 +3.2399 -3.0687 +0.1319
+124.6 +0.9574 +2.8 -2.6 +1.63 +3.2399 -3.0687 +0.1311
+124.8 +0.9531 +2.9 -2.6 +1.64 +3.3316 -3.074 +0.1308
+125.0 +0.9488 +2.8 -2.6 +1.66 +3.2551 -3.0847 +0.1305
+125.09 +0.9468 +2.9 -2.6 +1.62 +3.3218 -3.0634 +0.1304
+125.2 +0.9443 +2.9 -2.6 +1.62 +3.3218 -3.0634 +0.1302
+125.3 +0.9421 +2.9 -2.6 +1.62 +3.3218 -3.0634 +0.1301
+125.38 +0.9405 +2.9 -2.6 +1.62 +3.3218 -3.0634 +0.13
+125.6 +0.9357 +2.9 -2.6 +1.62 +3.3218 -3.0634 +0.1297
+126.0 +0.9272 +2.9 -2.7 +1.64 +3.3316 -3.1591 +0.1291
+128.0 +0.8859 +3.0 -2.7 +1.63 +3.4142 -3.1539 +0.1263
+130.0 +0.8469 +3.0 -2.7 +1.63 +3.4142 -3.1539 +0.1235
15 changes: 15 additions & 0 deletions data/lhc-hxswg/sm/xs/13.6TeV/13.6TeV-bbH.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
mH_GeV XS_pb Sca_Hi Sca_Lo Pdf_as_mb Total_pos Total_neg
+120.0 +0.648 +8.8 -8.8 +3.4 +9.4 -9.4
+122.0 +0.615 +8.7 -8.7 +3.4 +9.4 -9.4
+124.0 +0.584 +8.7 -8.7 +3.4 +9.3 -9.3
+124.6 +0.575 +8.6 -8.6 +3.4 +9.3 -9.3
+124.8 +0.572 +8.6 -8.6 +3.4 +9.3 -9.3
+125.0 +0.569 +8.6 -8.6 +3.4 +9.3 -9.3
+125.09 +0.568 +8.6 -8.6 +3.4 +9.3 -9.3
+125.2 +0.566 +8.6 -8.6 +3.4 +9.3 -9.3
+125.3 +0.565 +8.6 -8.6 +3.4 +9.3 -9.3
+125.38 +0.563 +8.6 -8.6 +3.4 +9.3 -9.3
+125.6 +0.561 +8.6 -8.6 +3.5 +9.3 -9.3
+126.0 +0.555 +8.6 -8.6 +3.5 +9.3 -9.3
+128.0 +0.528 +8.5 -8.5 +3.5 +9.2 -9.2
+130.0 +0.502 +8.5 -8.5 +3.5 +9.2 -9.2
15 changes: 15 additions & 0 deletions data/lhc-hxswg/sm/xs/13.6TeV/13.6TeV-ggH.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
mH_GeV XS_pb Sca_Hi Sca_Lo Pdf_minus_TH Gauss Pdf_alpha_s Total_pos Total_neg
+120.0 +55.54 +1.6 -4.7 +2.4 +4.1 +2.5 +4.717 -7.5273
+122.0 +53.97 +1.7 -4.7 +2.4 +4.1 +2.5 +4.8021 -7.5273
+124.0 +52.46 +1.6 -4.7 +2.4 +4.1 +2.5 +4.717 -7.5273
+124.6 +52.02 +1.6 -4.7 +2.4 +4.0 +2.5 +4.717 -7.5273
+124.8 +51.87 +1.6 -4.7 +2.4 +4.0 +2.5 +4.717 -7.5273
+125.0 +51.72 +1.6 -4.7 +2.4 +4.0 +2.5 +4.717 -7.5273
+125.09 +51.66 +1.6 -4.7 +2.4 +4.0 +2.5 +4.717 -7.5273
+125.2 +51.58 +1.6 -4.7 +2.4 +4.0 +2.5 +4.717 -7.5273
+125.3 +51.51 +1.6 -4.6 +2.4 +4.0 +2.5 +4.717 -7.433
+125.38 +51.45 +1.6 -4.6 +2.4 +4.0 +2.5 +4.717 -7.433
+125.6 +51.29 +1.6 -4.6 +2.4 +4.0 +2.5 +4.717 -7.433
+126.0 +51.01 +1.6 -4.6 +2.3 +4.0 +2.5 +4.6325 -7.3389
+128.0 +49.62 +1.6 -4.6 +2.3 +4.0 +2.5 +4.6325 -7.3389
+130.0 +48.28 +1.6 -4.6 +2.3 +4.0 +2.5 +4.6325 -7.3389
15 changes: 15 additions & 0 deletions data/lhc-hxswg/sm/xs/13.6TeV/13.6TeV-ggZH.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
mH_GeV XS_pb
+120.0 +0.1376
+122.0 +0.1348
+124.0 +0.1319
+124.6 +0.1311
+124.8 +0.1308
+125.0 +0.1305
+125.09 +0.1304
+125.2 +0.1302
+125.3 +0.1301
+125.38 +0.13
+125.6 +0.1297
+126.0 +0.1291
+128.0 +0.1263
+130.0 +0.1235
15 changes: 15 additions & 0 deletions data/lhc-hxswg/sm/xs/13.6TeV/13.6TeV-tH_schan.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
mH_GeV XS_pb Sca_Hi Sca_Lo Pdf_alpha_s Total_pos Total_neg XS_tH_pb XS_tbarH_pb
+120.0 +0.0034 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.0022 +0.0012
+122.0 +0.0033 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.0021 +0.0012
+124.0 +0.0032 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.0021 +0.0011
+124.6 +0.0032 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.0021 +0.0011
+124.8 +0.0032 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.0021 +0.0011
+125.0 +0.0032 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.0021 +0.0011
+125.09 +0.0031 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.0021 +0.0011
+125.2 +0.0031 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.0021 +0.0011
+125.3 +0.0031 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.0021 +0.0011
+125.38 +0.0031 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.0021 +0.0011
+125.6 +0.0031 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.002 +0.0011
+126.0 +0.0031 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.002 +0.0011
+128.0 +0.003 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.002 +0.001
+130.0 +0.0029 +2.4 +1.8 +2.3 +3.3242 -2.9206 +0.0019 +0.001
Loading
Loading