Skip to content
Snippets Groups Projects

Update option file for lhcb integration tests

Merged Davide Fazzini requested to merge dfazzini_update_lhcbint_test_options into master
All threads resolved!
2 files
+ 5
5
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -11,6 +11,7 @@
"""
Read the output of an Sprucing job with the new DaVinci configuration.
"""
import Functors as F
from FunTuple import FunctorCollection
from FunTuple import FunTuple_Particles as Funtuple
import FunTuple.functorcollections as FC
@@ -31,8 +32,8 @@ def main(options: Options):
variables = FunctorCollection({
'LOKI_MAXPT': 'TRACK_MAX_PT',
'LOKI_daug1_PT': F.CHILD(PT, 1),
'LOKI_daug2_PT': F.CHILD(PT, 2),
'LOKI_daug1_PT': F.CHILD(F.PT, 1),
'LOKI_daug2_PT': F.CHILD(F.PT, 2),
})
variables_extra = FunctorCollection({
@@ -57,7 +58,6 @@ def main(options: Options):
tuple_name="DecayTree",
fields=fields_dsk,
variables=variables_dsk,
loki_preamble=loki_preamble,
inputs=data_bd2dsk)
filter_bd2dsk = add_filter("HDRFilter_B0DsK", f"HLT_PASS('{line_bd2dsk}')")
Loading