Skip to content
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

introducing AlcaRecos in 2017 WFs #16168

Merged
merged 1 commit into from Oct 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 16 additions & 1 deletion Configuration/PyReleaseValidation/python/relval_steps.py
Expand Up @@ -1750,7 +1750,8 @@ def lhegensim(fragment,howMuch):
'--mc':'',
'--geometry' : geom,
'--scenario' : 'pp',
'--filetype':'DQM'
'--filetype':'DQM',
'--filein':'file:step3_inDQM.root'
}
if cust!=None : upgradeStepDict['HARVESTFull'][k]['--customise']=cust
if era is not None: upgradeStepDict['HARVESTFull'][k]['--era']=era
Expand All @@ -1765,6 +1766,20 @@ def lhegensim(fragment,howMuch):
upgradeStepDict['HARVESTFull_trackingOnlyPU'][k]=merge([PUDataSets[k2],upgradeStepDict['HARVESTFull_trackingOnly'][k]])
upgradeStepDict['HARVESTFullGlobalPU'][k]=merge([PUDataSets[k2],upgradeStepDict['HARVESTFullGlobal'][k]])



upgradeStepDict['ALCAFull'][k] = {'-s':'ALCA:TkAlMuonIsolated+TkAlMinBias+MuAlOverlaps+EcalESAlign',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bsunanda @kpedro88 anything Hcal related you might want to be included in here?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bsunanda should comment

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It will be nice to add HcalCalHBHEMuonFilter to this

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@boudoul would you mind adding the request from Sunanda? as I understand this doens't lie anymore in the critical path for pre13..

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no problem, will update later tonight - thanks for the prompt feedback !

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR has been merged before I could modified it, so the request for the new alcareco is addressed in a new PR #16183

'--conditions':gt,
'--datatier':'ALCARECO',
'-n':'10',
'--eventcontent':'ALCARECO',
'--geometry' : geom
}
if cust!=None : upgradeStepDict['RecoFull'][k]['--customise']=cust
if era is not None: upgradeStepDict['RecoFull'][k]['--era']=era



upgradeStepDict['FastSim'][k]={'-s':'GEN,SIM,RECO,VALIDATION',
'--eventcontent':'FEVTDEBUGHLT,DQM',
'--datatier':'GEN-SIM-DIGI-RECO,DQMIO',
Expand Down
Expand Up @@ -53,7 +53,8 @@
'HARVESTFull_trackingOnly',
'HARVESTFull_trackingOnlyPU',
'HARVESTFullGlobal',
'HARVESTFullGlobalPU'
'HARVESTFullGlobalPU',
'ALCAFull'
]

upgradeProperties = {}
Expand All @@ -63,25 +64,25 @@
'Geom' : 'DB:Extended',
'GT' : 'auto:phase1_2017_realistic',
'Era' : 'Run2_2017',
'ScenToRun' : ['GenSimFull','DigiFull','RecoFull','HARVESTFull'],
'ScenToRun' : ['GenSimFull','DigiFull','RecoFull','ALCAFull','HARVESTFull'],
},
'2017NewFPix' : {
'Geom' : 'Extended2017NewFPix',
'GT' : 'auto:phase1_2017_realistic',
'Era' : 'Run2_2017_NewFPix',
'ScenToRun' : ['GenSimFull','DigiFull','RecoFull','HARVESTFull'],
'ScenToRun' : ['GenSimFull','DigiFull','RecoFull','ALCAFull','HARVESTFull'],
},
'2017HCALdev' : {
'Geom' : 'Extended2017dev',
'GT' : 'auto:phase1_2017_hcaldev',
'Era' : 'Run2_2017_HCALdev',
'ScenToRun' : ['GenSimFull','DigiFull','RecoFull','HARVESTFull'],
'ScenToRun' : ['GenSimFull','DigiFull','RecoFull','ALCAFull','HARVESTFull'],
},
'2017AllNew' : {
'Geom' : 'Extended2017new',
'GT' : 'auto:phase1_2017_hcaldev',
'Era' : 'Run2_2017_new',
'ScenToRun' : ['GenSimFull','DigiFull','RecoFull','HARVESTFull'],
'ScenToRun' : ['GenSimFull','DigiFull','RecoFull','ALCAFull','HARVESTFull'],
},
}

Expand Down