Skip to content
Snippets Groups Projects

Allow requirements on 2- and 3- body topo output in B2OC prefilters

Merged Alessandro Bertolin requested to merge b2oc_upgrade into master
4 files
+ 81
20
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -30,6 +30,10 @@ from Hlt2Conf.lines.b_to_open_charm import all_lines
#from Hlt2Conf.lines.b_to_open_charm.b_to_dd import all_lines
#from Hlt2Conf.lines.b_to_open_charm.lb_to_lc import all_lines
from Hlt2Conf.lines.topological_b import threebody_line, twobody_line
from Hlt2Conf.lines.b_to_open_charm.b_to_dh import BdToDsmK_DsmToHHH_BDT_line
###############################################################################
# configure input data set (uncomment the "root:// .... " lines)
###############################################################################
@@ -149,7 +153,13 @@ options.conddb_tag = 'sim-20171127-vc-md100'
def make_lines():
return [builder() for builder in all_lines.values()]
lines = [builder() for builder in all_lines.values()]
lines.append(twobody_line())
lines.append(threebody_line())
lines.append(
BdToDsmK_DsmToHHH_BDT_line(
name='Hlt2B2OC_BdToDsmK_DsmToHHH_GenBDTGt0d0_Line', MVACut=0.))
return lines
public_tools = [stateProvider_with_simplified_geom()]
Loading