Skip to content
Snippets Groups Projects
Commit 09beb196 authored by Davide Fazzini's avatar Davide Fazzini
Browse files

latest fixes

parent 9907cf37
No related branches found
No related tags found
1 merge request!805Update option file for lhcb integration tests
Pipeline #5039111 failed
......@@ -14,6 +14,7 @@ objects are persisted by means of a pass through line.
"""
from PyConf.reading import get_particles
from FunTuple import FunTuple_Particles as Funtuple
from FunTuple import FunctorCollection
import FunTuple.functorcollections as FC
from DaVinci import Options, make_config
from DaVinci.algorithms import add_filter
......@@ -31,6 +32,7 @@ def main(options: Options):
#FunTuple: make functor collection from the imported functor library Kinematic
variables_all = FC.Kinematics()
variables = FunctorCollection({
'LOKI_daug1_PT': F.CHILD(1, F.PT),
'LOKI_daug2_PT': F.CHILD(2, F.PT),
......@@ -43,14 +45,6 @@ def main(options: Options):
variables += variables_extra
#FunTuple: associate functor collections to field name
"""
variables_dsk = {
'ALL': variables_all, #adds variables to all fields
'B0': variables,
'Ds': variables_extra,
'Kp': variables_extra
}
"""
variables_dspi = {
'ALL': variables_all, #adds variables to all fields
'B0': variables,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment