Skip to content
Snippets Groups Projects

Lb2D0Lz Run3

Merged Dong Ao requested to merge aodong/Lb2DL into master
1 unresolved thread
1 file
+ 4
5
Compare changes
  • Side-by-side
  • Inline
  • 923f2655
    fix dv · 923f2655
    dao authored
@@ -481,10 +481,9 @@ def alg_config_LbToD0Lz(options:Options, tracktype="LL",Dstate="HH"):
# define FunTuple instance
user_algorithms = {}
#user_algorithms = {}
my_tuples = {}
my_tuples[f"{decayname}_{tracktype}"] = Funtuple(
my_tuple = Funtuple(
name=name,
tuple_name="DecayTree",
fields=all_fields[f"Lb2D0Lz{tracktype}_D02{Dstate}"],
@@ -493,10 +492,10 @@ def alg_config_LbToD0Lz(options:Options, tracktype="LL",Dstate="HH"):
inputs=line_data,
store_multiple_cand_info=True
)
user_algorithms[f"Alg_{name}"]= [my_filter, my_tuple] for name, my_tuple in my_tuples.items()
#user_algorithms[f"Alg_{name}"]= [my_filter, my_tuple] for name, my_tuple in my_tuples.items()
return make_config(options, user_algorithms)
return make_config(options, [my_filter, my_tuple])
def alg_config_LbToD0LzLL_D02HH(options:Options):
Loading