Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,8 @@ def setup_(self, step, stepName, stepDict, k, properties):
if 'HARVESTGlobal' in step:
stepDict[stepName][k] = merge([self.step4, stepDict[step][k]])
def condition(self, fragment, stepList, key, hasHarvest):
return (fragment=="TTbar_14TeV" or 'CloseByP' in fragment or 'Eta1p7_2p7' in fragment) and 'Run4' in key
selected_fragments = ["TTbar_14TeV", "CloseByP", "Eta1p7_2p7", "ZEE_14"]
return (fragment in selected_fragments) and 'Run4' in key
Comment on lines -859 to +860
Copy link
Contributor

Choose a reason for hiding this comment

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

as @AuroraPerego pointed out, now you will accept only exact matches here, which for 29646.203_ZEE_14+Run4D110_ticl_v5 works, but for the other ones (e.g. 29696.0_CloseByPGun_CE_E_Front_120um+Run4D110) will not.


upgradeWFs['ticl_v5'] = UpgradeWorkflow_ticl_v5(
steps = [
Expand Down