-
Notifications
You must be signed in to change notification settings - Fork 61
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
Support nano flavours T0 #5031
base: master
Are you sure you want to change the base?
Support nano flavours T0 #5031
Changes from 3 commits
ada743f
3d29969
a5d4318
1db87d7
304689b
ca79992
05af49f
27adece
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -858,6 +858,9 @@ def releasePromptReco(tier0Config, specDirectory, dqmUploadProxy): | |
if len(datasetConfig.DqmSequences) > 0: | ||
dqmSeq = ",".join(datasetConfig.DqmSequences) | ||
|
||
if len(datasetConfig.NanoFlavours) > 0: | ||
nanoFlavours = ",".join(datasetConfig.NanoFlavours) | ||
|
||
datasetConfig.ScramArch = tier0Config.Global.ScramArches.get(datasetConfig.CMSSWVersion, | ||
tier0Config.Global.DefaultScramArch) | ||
|
||
|
@@ -874,6 +877,7 @@ def releasePromptReco(tier0Config, specDirectory, dqmUploadProxy): | |
'ALCA_SKIM' : alcaSkim, | ||
'PHYSICS_SKIM' : physicsSkim, | ||
'DQM_SEQ' : dqmSeq, | ||
'NANO_FLAVOUR' : nanoFlavours, | ||
'CMSSW' : datasetConfig.CMSSWVersion, | ||
'SCRAM_ARCH' : datasetConfig.ScramArch, | ||
'MULTICORE' : datasetConfig.Multicore, | ||
|
@@ -1063,7 +1067,7 @@ def releasePromptReco(tier0Config, specDirectory, dqmUploadProxy): | |
specArguments['AlcaSkims'] = datasetConfig.AlcaSkims | ||
specArguments['PhysicsSkims'] = datasetConfig.PhysicsSkims | ||
specArguments['DQMSequences'] = datasetConfig.DqmSequences | ||
|
||
specArguments['NanoFlavours'] = datasetConfig.NanoFlavours | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't this be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you elaborate? The spec arguments are cought in WMCore here (in your PR): https://github.com/dmwm/WMCore/blob/ebbe830106165340ebae9301620acec7672643c4/src/python/WMCore/WMSpec/StdSpecs/PromptReco.py There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok I guess the translation is done here: https://github.com/dmwm/WMCore/blob/ebbe830106165340ebae9301620acec7672643c4/src/python/WMCore/WMSpec/StdSpecs/PromptReco.py#L183 |
||
specArguments['UnmergedLFNBase'] = "/store/unmerged/%s" % runInfo['bulk_data_type'] | ||
if runInfo['backfill']: | ||
specArguments['MergedLFNBase'] = "/store/backfill/%s/%s" % (runInfo['backfill'], | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe the default should be
nano_flavours=['@PHYS, '@L1'],
The
,NANO:
part is added in CMSSW.