Skip to content
Snippets Groups Projects
Commit 105a7700 authored by gitlabCI's avatar gitlabCI
Browse files

fix not defined in dv_simple.py

parent 0ef5fda2
No related branches found
No related tags found
1 merge request!2770Draft: B2OC: Abertoli/bs2dspi run3 spruce
Pipeline #11053839 failed
...@@ -48,11 +48,11 @@ def alg_config(options: Options): ...@@ -48,11 +48,11 @@ def alg_config(options: Options):
input_particles=line_data, input_particles=line_data,
mass_constraints=["D_s-"]) mass_constraints=["D_s-"])
if( PVUnbias ): if( PVUnbias ):
b2dx_data_unbiased = ParticleUnbiasedPVAdder( line_data_unbiased = ParticleUnbiasedPVAdder(
InputParticles=b2dx_data, PrimaryVertices=get_extended_pvs()).OutputParticles InputParticles=line_data, PrimaryVertices=get_extended_pvs()).OutputParticles
DTF_LifetimeFit = DecayTreeFitter( DTF_LifetimeFit = DecayTreeFitter(
name="DTF_LifetimeFit", name="DTF_LifetimeFit",
input_particles=b2dx_data_unbiased, input_particles=line_data_unbiased,
constrain_to_ownpv=True) constrain_to_ownpv=True)
else: else:
DTF_LifetimeFit = DecayTreeFitter(name="DTF_LifetimeFit", DTF_LifetimeFit = DecayTreeFitter(name="DTF_LifetimeFit",
......
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