-
Notifications
You must be signed in to change notification settings - Fork 183
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
Add fix for segfault in Min Bias #8794
Add fix for segfault in Min Bias #8794
Conversation
A new Pull Request was created by @Dominic-Stafford for branch IB/CMSSW_13_3_X/master. @aandvalenzuela, @smuzaffar, @iarspider, @cmsbuild can you please review it and eventually sign? Thanks. |
please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-4933d1/35508/summary.html Comparison SummarySummary:
|
+externals |
This pull request is fully signed and it will be integrated in one of the next IB/CMSSW_13_3_X/master IBs (tests are also fine). This pull request will now be reviewed by the release team before it's merged. @sextonkennedy, @antoniovilela, @rappoccio (and backports should be raised in the release meeting by the corresponding L2) |
assign generators @cms-sw/generators-l2 can you please review and approve this change? |
New categories assigned: generators @alberto-sanchez,@bbilin,@GurpreetSinghChahal,@mkirsano,@menglu21,@SiewYan you have been requested to review this Pull request/Issue and eventually sign? Thanks |
+1 |
This pull request is fully signed and it will be integrated in one of the next IB/CMSSW_13_3_X/master IBs (tests are also fine). This pull request will now be reviewed by the release team before it's merged. @antoniovilela, @rappoccio, @sextonkennedy (and backports should be raised in the release meeting by the corresponding L2) |
@cms-sw/orp-l2 , this is ready to go in 13.3.X, feel free to sign it |
@cms-sw/generators-l2 @cms-sw/orp-l2 , what about this fix? should this go in 13.3.X? |
Yes, sorry for the delay. |
+1 |
A segfault was reported for generating Min Bias events with Herwig. The root cause seems to be that both the "read" and "run" steps are run in a single job (whereas in standalone Herwig they are run in two different jobs). This leads to issues as two static pointers are made to an object which is deleted and recreated between the steps, removing the static keyword seems to resolve the issue (tested in CMSSW_10_6). Herwig authors agree this seems a reasonable fix, and they plan to include it in future versions of Herwig, this patch resolves the issue in CMSSW in the meantime