Skip to content
Snippets Groups Projects

Resolve "Tupling test running on spruced output"

Merged Davide Fazzini requested to merge 6-tupling-test-running-on-spruced-output into master
Compare and
29 files
+ 621
97
Compare changes
  • Side-by-side
  • Inline
Files
29
@@ -117,11 +117,15 @@ def main():
options.histo_file = 'DV-example-tupling-advanced-his.root'
options.input_raw_format = 4.3
options.lumi = False
options.enable_unpack = False
tools = []
#Algorithms will be run following the insertion order.
#In this case, both "DiMuons" and "KShorts" need locations created by
#upfront_reconstruction() as input, so a "Reco" node is created on top.
algs = {
"Reco": upfront_reconstruction(),
"DiMuons": upfront_reconstruction() + [dimuons, tuple_dimuons],
"KShorts": upfront_reconstruction() + [kshorts, tuple_kshorts]
"DiMuons": [dimuons, tuple_dimuons],
"KShorts": [kshorts, tuple_kshorts]
}
return algs, tools
Loading