Skip to content
Snippets Groups Projects
Commit 676360ca authored by Heather Russell's avatar Heather Russell
Browse files

patch

parent 73ca7e17
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!40740ATR-19305: allow first step from a leg to be empty
...@@ -448,7 +448,14 @@ def makeCombinedStep(parallel_steps, stepNumber, chainDefList, allSteps = [], cu ...@@ -448,7 +448,14 @@ def makeCombinedStep(parallel_steps, stepNumber, chainDefList, allSteps = [], cu
log.debug("[makeCombinedStep] step %s, empty sequence %s", currentStepName, seqName) log.debug("[makeCombinedStep] step %s, empty sequence %s", currentStepName, seqName)
#stepNumber is indexed from 1, need the previous step indexed from 0, so do - 2 #stepNumber is indexed from 1, need the previous step indexed from 0, so do - 2
prev_step_mult = int(currentChainSteps[stepNumber-2].multiplicity[chain_index]) prev_step_mult = -1
if stepNumber > 1:
prev_step_mult = int(currentChainSteps[stepNumber-2].multiplicity[chain_index])
prev_step_mult_alt = int(new_stepDict['chainParts'][0]['multiplicity'])
assert prev_step_mult == prev_step_mult_alt, "[makeCombinedStep] The two methods of accessing step multiplicity are not equivalent!"
else:
#get the step multiplicity from the step dict. This should be
prev_step_mult = int(new_stepDict['chainParts'][0]['multiplicity'])
stepMult.append(prev_step_mult) stepMult.append(prev_step_mult)
# we need a chain dict here, use the one corresponding to this leg of the chain # we need a chain dict here, use the one corresponding to this leg of the chain
oldLegName = new_stepDict['chainName'] oldLegName = new_stepDict['chainName']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment