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

62X - fix metUncertaintyTools for scheduled processing #3931

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion PhysicsTools/PatUtils/python/tools/metUncertaintyTools.py
Expand Up @@ -1605,7 +1605,9 @@ def toolCode(self, process):
postfix)

# insert metUncertaintySequence into patDefaultSequence
if addToPatDefaultSequence and process.options.allowUnscheduled == False:
if hasattr(process,'options') and hasattr(process.options,'allowUnscheduled') and process.options.allowUnscheduled == True:
addToPatDefaultSequence = False
if addToPatDefaultSequence:
if not hasattr(process, "patDefaultSequence"):
raise ValueError("PAT default sequence is not defined !!")
process.patDefaultSequence += metUncertaintySequence
Expand Down