Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recover the special type and cuts for heavy quark dis #2255

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ implemented_observables:
description: Deep Inelastic Scattering
label: HERA comb. $\sigma_{b\bar b}^{\rm red}$
units: ''
process_type: DIS_NC
process_type: DIS_NC_BOTTOM
tables: []
npoints: []
ndata: 27
Expand Down Expand Up @@ -74,7 +74,7 @@ implemented_observables:
description: Deep Inelastic Scattering
label: HERA comb. $\sigma_{c\bar c}^{\rm red}$
units: ''
process_type: DIS_NC
process_type: DIS_NC_CHARM
tables: []
npoints: []
ndata: 52
Expand Down
6 changes: 3 additions & 3 deletions validphys2/src/validphys/cuts/filters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@
rule: "Q2 > q2min and w2 > w2min"


- process_type: DIS_NCP_CH
- process_type: DIS_NC_CHARM
reason: |
Heavy quark corrections are large in the FONLL-A calculation, and
points at small-x and small Q2 need to be removed.
Expand All @@ -411,15 +411,15 @@
Q2 > Q2cut1_f2c and
(Q2 > Q2cut2_f2c or x > xcut_f2c)

- process_type: DIS_NCP_CH
- process_type: DIS_NC_CHARM
reason: |
Missing higher order corrections to Delta F_IC, the piece that needs
to be added to the FONLL-C calculation in the case of fitted charm.
FNS: FONLL-C
IC: True
rule: "Q2 > 8"

- process_type: DIS_NCP_CH
- process_type: DIS_NC_CHARM
reason: |
Missing higher order corrections to Delta F_IC, the piece that needs
to be added to the FONLL-E calculation in the case of fitted charm.
Expand Down
2 changes: 2 additions & 0 deletions validphys2/src/validphys/process_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,8 @@ def _dymll_xq2map(kin_info):
"DIS_CC": dataclasses.replace(DIS, name="DIS_CC"),
"DIS_NCE": dataclasses.replace(DIS, name="DIS_NCE"),
"DIS_POL": dataclasses.replace(DIS, name="DIS_POL"),
"DIS_NC_CHARM": dataclasses.replace(DIS, name="DIS_NC_CHARM"),
"DIS_NC_BOTTOM": dataclasses.replace(DIS, name="DIS_NC_BOTTOM"),
"JET": JET,
"DIJET": DIJET,
"SHP_ASY": SHP,
Expand Down
Loading