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
xor
Noticed in #47085 e.g.
import FWCore.ParameterSet.Config as cms process = cms.Process("Test") from IOPool.Input.modules import PoolSource process.source = PoolSource( fileNames = "nonexistent.root", firstEvent = 2**32 )
or
import FWCore.ParameterSet.Config as cms process = cms.Process("Test") from IOPool.Input.modules import PoolSource process.source = PoolSource( fileNames = "nonexistent.root", firstEvent = cms.uint64(2**32) )
fail with
TypeError: addUInt32(): incompatible function arguments. The following argument types are supported: 1. (self: libFWCorePythonParameterSet.ParameterSet, arg0: bool, arg1: str, arg2: int) -> None
TypeError: Attempted to assign type <class 'FWCore.ParameterSet.Types.uint64'> to type <class 'FWCore.ParameterSet.Types.uint32'>
, respectively, when run through cmsRun.
cmsRun
PoolSource uses this fillDescriptions for the firstEvent
PoolSource
fillDescriptions
firstEvent
cmssw/FWCore/Sources/src/IDGeneratorSourceBase.cc
Lines 275 to 276 in 73cb482
The module generator function uses the unsigned int variant, and makes the use of the other type impossible with the new syntax.
unsigned int
The text was updated successfully, but these errors were encountered:
assign core
Sorry, something went wrong.
New categories assigned: core
@Dr15Jones,@makortel,@smuzaffar you have been requested to review this Pull request/Issue and eventually sign? Thanks
cms-bot internal usage
A new Issue was created by @makortel.
@Dr15Jones, @antoniovilela, @makortel, @mandrenguyen, @rappoccio, @sextonkennedy, @smuzaffar can you please review it and eventually sign/assign? Thanks.
cms-bot commands are listed here
No branches or pull requests
Noticed in #47085 e.g.
or
fail with
or
, respectively, when run through
cmsRun
.PoolSource
uses thisfillDescriptions
for thefirstEvent
cmssw/FWCore/Sources/src/IDGeneratorSourceBase.cc
Lines 275 to 276 in 73cb482
The module generator function uses the
unsigned int
variant, and makes the use of the other type impossible with the new syntax.The text was updated successfully, but these errors were encountered: