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

fixed the cards #3814

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
@@ -1 +1 @@
DecayMode1=8 DecayMode2=1
DecayMode1=8 DecayMode2=1 WriteFailedEvents=2
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
numevts NEVENTS
ih1 1 ! hadron 1 (1 for protons, -1 for antiprotons)
ih2 1 ! hadron 2 (1 for protons, -1 for antiprotons)
#ndns1 131 ! pdf set for hadron 1 (mlm numbering)
#ndns2 131 ! pdf set for hadron 2 (mlm numbering)
ebeam1 6800 ! energy of beam 1
ebeam2 6800 ! energy of beam 2

Expand All @@ -13,13 +11,13 @@ lhans2 325300 ! pdf set for hadron 2 (LHA numbering)
use-old-grid 1 ! if 1 use old grid if file pwggrids.dat is present (<> 1 regenerate)
use-old-ubound 1 ! if 1 use norm of upper bounding function stored in pwgubound.dat, if present; <> 1 regenerate

ncall1 50000 ! number of calls for initializing the integration grid
itmx1 5 ! number of iterations for initializing the integration grid
ncall2 50000 ! number of calls for computing the integral and finding upper bound
ncall1 550000 ! number of calls for initializing the integration grid
itmx1 7 ! number of iterations for initializing the integration grid
ncall2 75000 ! number of calls for computing the integral and finding upper bound
itmx2 5 ! number of iterations for computing the integral and finding upper bound
foldcsi 1 ! number of folds on csi integration
foldy 1 ! number of folds on y integration
foldphi 1 ! number of folds on phi integration
foldcsi 2 ! number of folds on csi integration
foldy 5 ! number of folds on y integration
foldphi 2 ! number of folds on phi integration
nubound 50000 ! number of bbarra calls to setup norm of upper bounding function
icsimax 1 ! <= 100, number of csi subdivision when computing the upper bounds
iymax 1 ! <= 100, number of y subdivision when computing the upper bounds
Expand All @@ -40,11 +38,11 @@ iseed SEED
! **** Mandatory parameters for ALL models ****
massren 0 ! Mass renormalization scheme. 0 = OS, 1 = MSBAR , 2 = DRBAR
zerowidth 0 ! Control if the Higgs boson is to be produced on-shell or not: 1 = On-Shell; 0 = Off-shell with Breit-Wigner
ew 0 ! ew = 0 disable EW corrections - ew = 1 enable EW corrections
ew 1 ! ew = 0 disable EW corrections - ew = 1 enable EW corrections
model 0
gfermi 0.116637D-04 ! GF
hdecaymode -1 ! PDG code for first decay product of the higgs
masswindow 9999d0 !(default 10d0) number of widths around hmass in the BW for an off-shell Higgs boson
masswindow 1d0 !(default 10d0) number of widths around hmass in the BW for an off-shell Higgs boson
Copy link
Contributor

Choose a reason for hiding this comment

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

Why did you change the masswindow?
In principle you can refer to the already existing cards for Powheg ggH, e.g.:
https://github.com/cms-sw/genproductions/blob/master/bin/Powheg/production/Run3/13p6TeV/Higgs/gg_H_quark-mass-effects_with_JHUGen_NNPDF31_13p6TeV/gg_H_quark-mass-effects_NNPDF31_13p6TeV_M125.input

Actually, if you just want a different decay mode, I think you can reuse exactly the same Powheg card and just change the JHUGen card according to the decay channel you want.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Hi @lviliani
card is updated similar to the existing card that you shared.


! **** Mandatory parameters for SM or MW ****
hmass 125d0 ! Higgs boson mass
Expand All @@ -54,7 +52,7 @@ bottommass 4.75d0 ! bottom quark mass - if defined it enables the bottom quar

! Optional
hdecaywidth 0 ! If equals to 1 read total decay width from HDECAY sm.br2 file
#withnegweights 1 1
#withnegweights 1
#pdfreweight 0
#storeinfo_rwgt 0
bwshape 3 ! complex-pole scheme according to Passarino et al.
Expand Down