Skip to content

Commit

Permalink
mimicking the split/join procedure in case the a physproc is being us…
Browse files Browse the repository at this point in the history
…ed, otherwise one gets : in the file names/submission scripts (cms-sw#85)
  • Loading branch information
pfs authored and riga committed Oct 9, 2019
1 parent d5d45fa commit ebdc67b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SubmitHGCalPGun.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def submitHGCalProduction(*args, **kwargs):
processDetails = '_PDGid'+'_id'.join(sParticle)
if opt.gunMode == 'physproc':
processDetails = '_'.join(opt.gunType.split(':'))
cutsApplied = '_' + opt.gunType + str(opt.thresholdMin) + 'To' + str(opt.thresholdMax) + '_'
cutsApplied = '_'+ '_'.join(opt.gunType.split(':')) + str(opt.thresholdMin) + 'To' + str(opt.thresholdMax) + '_'
# in case of 'RECO' or 'NTUP', get the input file list for given particle, determine number of jobs, get also basic GSD/RECO info
if (opt.DTIER == 'RECO' or opt.DTIER == 'NTUP'):
inputFilesList = getInputFileList(DASquery, inPath, previousDataTier, opt.LOCAL, '*.root')
Expand Down

0 comments on commit ebdc67b

Please sign in to comment.