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, RecoFakeHLT and RecoGlobal
51  stepWoFakeHLT = step.replace('FakeHLT','') # ignore "FakeHLT" from step
52  stepList[specialType].append(stepMaker(key,frag[:-4],stepWoFakeHLT.replace('RecoGlobal','MiniAOD').replace('RecoNano','MiniAOD').replace('Reco','MiniAOD'),specialWF.suffix))
53  if 'RecoNano' in stepWoFakeHLT:
54  stepList[specialType].append(stepMaker(key,frag[:-4],stepWoFakeHLT.replace('RecoNano','Nano'),specialWF.suffix))
55  # hack to add extra HLT75e33 step for Phase-2
56  if 'HLT75e33' in specialType:
57  if 'RecoGlobal' in step:
58  stepList[specialType].append(stepMaker(key,frag[:-4],step.replace('RecoGlobal','HLT75e33'),specialWF.suffix))
59  # similar hacks for premixing
60  if 'PMX' in specialType:
61  if 'GenSim' in step:
62  s = step.replace('GenSim','Premix')+'PU' # later processing requires to have PU here
63  if step in specialWF.PU:
64  stepMade = stepMaker(key,'PREMIX',s,specialWF.suffix)
65  # append for combined
66  if 'S2' in specialType: stepList[specialType].append(stepMade)
67  # replace for s1
68  else: stepList[specialType][-1] = stepMade
69  else:
70  stepList[specialType].append(stepMaker(key,frag[:-4],step,''))
71 
72  for specialType,specialWF in upgradeWFs.items():
73  # remove other steps for premixS1
74  if specialType=="PMXS1":
75  stepList[specialType] = stepList[specialType][:1]
76  specialWF.workflow(workflows, numWF, info.dataset, stepList[specialType], key, hasHarvest)
77 
78  numWF+=1
def makeStepName(key, frag, step, suffix)
def replace(string, replacements)
portabletest::Matrix Matrix
def makeStepNameSim(key, frag, step, suffix)