Skip to content
Snippets Groups Projects
Commit 23b0e3d3 authored by Tommaso Fulghesu's avatar Tommaso Fulghesu
Browse files

Fix linting

parent 419eb3ff
No related branches found
No related tags found
No related merge requests found
Pipeline #3688167 failed
This commit is part of merge request !665. Comments created here will be created in the context of that merge request.
......@@ -35,19 +35,29 @@ make_parts = _make_particles()
isolation_container = ParticleContainerMerger(
InputContainers=[make_parts]).OutputContainer
tagAlg = ParticleTaggerAlg(
Input=bd2dsk_data, ParticleContainer=isolation_container, OutputLevel=3)
tagAlg_out = tagAlg.Output
tagAlg_rels = tagAlg.OutputRelations
isoAlg = ParticleIsolationAlg(
Input=bd2dsk_data, ParticleContainer=isolation_container, DeltaR2=0.4)
isoAlg_rels = isoAlg.OutputRelations
#make collection of functors
variables_B = FunctorCollection({
'THOR_MASS':
F.MASS,
"Sum_P":
F.SUM_CONE(Functor=F.SUM_RANGE(Functor=F.P), Relations=isoAlg_rels),
F.SUMCONE(Functor=F.SUM_RANGE(Functor=F.P), Relations=isoAlg_rels),
"Sum_PT":
F.SUM_CONE(Functor=F.SUM_RANGE(Functor=F.PT), Relations=isoAlg_rels),
F.SUMCONE(Functor=F.SUM_RANGE(Functor=F.PT), Relations=isoAlg_rels),
})
#make collection of functors
variables_K = FunctorCollection({
'THOR_MASS':
F.MASS,
"Sum_P":
F.SUMCONE(Functor=F.SUM_RANGE(Functor=F.P), Relations=isoAlg_rels),
"Sum_PT":
F.SUMCONE(Functor=F.SUM_RANGE(Functor=F.PT), Relations=isoAlg_rels),
})
#make collection of functors for Muplus
......
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