We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There are some dict initializations in this file which rely on python3 syntax:
slurpDic = { name : ws.data(name+suffix) for name in procs} # filter out histos that are null pointers return { k : v for k, v in slurpDic.iteritems() if v }
and
integrals = { proc : h.sumEntries() for (proc, h) in histos.iteritems()}
it is not clear how to get python3 on lxplus other than installing it in one's home directory.
Can these be changed to python2 syntax:
slurpDic = dict([ (name, ws.data(name+suffix)) for name in procs]) # filter out histos that are null pointers return dict([ (k,v) for k, v in slurpDic.iteritems() if v ])
integrals = dict([ (proc,h.sumEntries()) for (proc, h) in histos.iteritems()])
?
We can provide a pull request for these if wanted.
The text was updated successfully, but these errors were encountered:
Merge pull request cms-analysis#17 from emanueledimarco/vbfac-dev
a1654dc
Updates for running Impacts on anomalous couplings
No branches or pull requests
There are some dict initializations in this file which rely on python3 syntax:
and
it is not clear how to get python3 on lxplus other than installing it in one's home directory.
Can these be changed to python2 syntax:
and
?
We can provide a pull request for these if wanted.
The text was updated successfully, but these errors were encountered: