|
- Timestamp:
-
May 18, 2017, 5:08:07 PM (8 years ago)
- Author:
-
graeme
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v3
|
v4
|
|
10 | 10 | This mode is selected by choosing `p p -> e+ e-` as your process in Herwig, and setting |
11 | 11 | {{{ |
12 | | set KrkNLO:Mode Z |
| 12 | set KrkNLOEventReweight:Mode Z |
13 | 13 | }}} |
14 | 14 | |
… |
… |
|
18 | 18 | This mode is selected by choosing `p p -> H` as your process in Herwig, and setting |
19 | 19 | {{{ |
20 | | set KrkNLO:Mode H |
| 20 | set KrkNLOEventReweight:Mode H |
21 | 21 | }}} |
22 | 22 | as well as `read Matchbox/HiggsEffective.in` |
… |
… |
|
28 | 28 | == Options |
29 | 29 | === Scale Settings |
30 | | There are options that set the argument of AlphaS for the real emission correction, `KrkNLO:AS_R`, and the virtual+soft correction, `KrkNLO:AS_V`. The possible options are: |
| 30 | There are options that set the argument of AlphaS for the real emission correction, `KrkNLOEventReweight:AS_R`, and the virtual+soft correction, `KrkNLOEventReweight:AS_V`. The possible options are: |
31 | 31 | * AS_R: `Q2`, `M2`, `Freeze` |
32 | 32 | * AS_V: `Q2`, `M2` |
… |
… |
|
38 | 38 | |
39 | 39 | === PDF Type |
40 | | TO BE DOCUMENTED |
| 40 | The options available for the type of PDF are `MCDY`, and `MC` which refer to the type of MC-scheme PDF. These are selected via the interface `KrkNLOEventReweight:PDF`, as shown here |
| 41 | {{{ |
| 42 | set KrkNLOEventReweight:PDF MC |
| 43 | }}} |
41 | 44 | |
| 45 | Note:: |
| 46 | The PDF type here '''must''' match the chosen PDF. |
42 | 47 | |
43 | 48 | == Using Monte Carlo scheme PDFs |
44 | 49 | |
45 | | The MC-scheme PDFs are available in [https://krknlo.hepforge.org/hg/mc-pdf this repository], and are stored as [https://lhapdf.hepforge.org LHAPDF] `.LHgrid` files. |
| 50 | === Obtaining the PDFs |
| 51 | The MC-scheme PDFs are available in [https://krknlo.hepforge.org/hg/mc-pdf this repository], and are stored as [https://lhapdf.hepforge.org LHAPDF] `.LHgrid` files. |
46 | 52 | |
47 | 53 | The repository contains MC-scheme PDF, which are converted from their correspondingly named MSbar PDF, and are prefixed with either `MCDY_`, or `MC_`, with the former denoting the ''Drell-Yan'' only variant and the latter denoting the ''full'' conversion. |
… |
… |
|
55 | 61 | export LHAPATH=/path/to/mc-pdf:$LHAPATH |
56 | 62 | }}} |
| 63 | |
| 64 | === Setup |
| 65 | To set the MC-scheme PDF in Herwig one can use the following snippet, replacing `MC_MMHT2014lo68cl.LHgrid` with the required MC-scheme PDF: |
| 66 | {{{ |
| 67 | |
| 68 | cd /Herwig/Partons |
| 69 | |
| 70 | set HardLOPDF:PDFName MC_MMHT2014lo68cl.LHgrid |
| 71 | set HardNLOPDF:PDFName MC_MMHT2014lo68cl.LHgrid |
| 72 | |
| 73 | set ShowerLOPDF:PDFName MC_MMHT2014lo68cl.LHgrid |
| 74 | set ShowerNLOPDF:PDFName MC_MMHT2014lo68cl.LHgrid |
| 75 | |
| 76 | set MPIPDF:PDFName MC_MMHT2014lo68cl.LHgrid |
| 77 | set RemnantPDF:PDFName MC_MMHT2014lo68cl.LHgrid |
| 78 | |
| 79 | }}} |
| 80 | |
| 81 | The file `$HERWIG_ENV/share/Matchbox/MMHT2014.in` can be used a a reference on how to set PDFs within Herwig. |
|