CMS 3D CMS Logo

relval_upgrade.py
Go to the documentation of this file.
1 # import the definition of the steps and input files:
3 
4 # here only define the workflows as a combination of the steps defined above:
5 workflows = Matrix()
6 
7 # each workflow defines a name and a list of steps to be done.
8 # if no explicit name/label given for the workflow (first arg),
9 # the name of step1 will be used
10 
11 def makeStepNameSim(key,frag,step,suffix):
12  return frag+'_'+key+'_'+step+suffix
13 
14 def makeStepName(key,frag,step,suffix):
15  return step+suffix+'_'+key
16 
17 #just define all of them
18 
19 for year in upgradeKeys:
20  for i,key in enumerate(upgradeKeys[year]):
21  numWF=numWFAll[year][i]
22  for frag,info in upgradeFragments.items():
23  # phase2-specific fragments are skipped in phase1
24  if ("CE_E" in frag or "CE_H" in frag) and year==2017:
25  numWF += 1
26  continue
27  stepList={}
28  for specialType in upgradeWFs.keys():
29  stepList[specialType] = []
30  hasHarvest = False
31  for step in upgradeProperties[year][key]['ScenToRun']:
32  stepMaker = makeStepName
33  if 'Sim' in step and 'Fast' not in step:
34  if 'HLBeamSpot' in step:
35  if '14TeV' in frag:
36  step = 'GenSimHLBeamSpot14'
37  if 'CloseByParticle' in frag or 'CE_E' in frag or 'CE_H' in frag:
38  step = 'GenSimHLBeamSpotHGCALCloseBy'
39  stepMaker = makeStepNameSim
40  elif 'Gen' in step:
41  stepMaker = makeStepNameSim
42 
43  if 'HARVEST' in step: hasHarvest = True
44 
45  for specialType,specialWF in upgradeWFs.items():
46  if (specialType != 'baseline') and ( ('PU' in step and step.replace('PU','') in specialWF.PU) or (step in specialWF.steps) ):
47  stepList[specialType].append(stepMaker(key,frag[:-4],step,specialWF.suffix))
48  # hack to add an extra step
49  if 'ProdLike' in specialType:
50  if 'Reco' in step: # handles both Reco and RecoGlobal
51  stepList[specialType].append(stepMaker(key,frag[:-4],step.replace('RecoGlobal','MiniAOD').replace('RecoNano','MiniAOD').replace('Reco','MiniAOD'),specialWF.suffix))
52  if 'RecoNano' in step:
53  stepList[specialType].append(stepMaker(key,frag[:-4],step.replace('RecoNano','Nano'),specialWF.suffix))
54  # hack to add extra HLT75e33 step for Phase-2
55  if 'HLT75e33' in specialType:
56  if 'RecoGlobal' in step:
57  stepList[specialType].append(stepMaker(key,frag[:-4],step.replace('RecoGlobal','HLT75e33'),specialWF.suffix))
58  # similar hacks for premixing
59  if 'PMX' in specialType:
60  if 'GenSim' in step:
61  s = step.replace('GenSim','Premix')+'PU' # later processing requires to have PU here
62  if step in specialWF.PU:
63  stepMade = stepMaker(key,'PREMIX',s,specialWF.suffix)
64  # append for combined
65  if 'S2' in specialType: stepList[specialType].append(stepMade)
66  # replace for s1
67  else: stepList[specialType][-1] = stepMade
68  else:
69  stepList[specialType].append(stepMaker(key,frag[:-4],step,''))
70 
71  for specialType,specialWF in upgradeWFs.items():
72  # remove other steps for premixS1
73  if specialType=="PMXS1":
74  stepList[specialType] = stepList[specialType][:1]
75  specialWF.workflow(workflows, numWF, info.dataset, stepList[specialType], key, hasHarvest)
76 
77  numWF+=1
def makeStepName(key, frag, step, suffix)
def replace(string, replacements)
portabletest::Matrix Matrix
def makeStepNameSim(key, frag, step, suffix)