Skip to content

Commit

Permalink
Fix EmissionVetoHook for BB4L
Browse files Browse the repository at this point in the history
  • Loading branch information
lauridsj committed Aug 1, 2023
1 parent 5a2d5b0 commit 5e42269
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ bool EmissionVetoHook1::doVetoFSREmission(int, const Pythia8::Event &e, int iSys
return false;

// only use for outside resonance vetos in combination with bb4l:FSREmission:veto
if (!inResonance && settingsPtr->flag("POWHEG:bb4l:FSREmission:veto") == 1)
if (inResonance && settingsPtr->flag("POWHEG:bb4l:FSREmission:veto") == 1)
return false;

// If we already have accepted 'vetoCount' emissions in a row, do nothing
Expand Down

0 comments on commit 5e42269

Please sign in to comment.