Skip to content
Snippets Groups Projects

Cleanup DV example exploiting isolation variables

Merged Tommaso Fulghesu requested to merge tfulghes-default-values into master
All threads resolved!
@@ -52,21 +52,21 @@ def main(options: Options):
'THOR_MASS':
F.MASS,
"First_P":
F.VALUE_OR(0.) @ F.MAP_INPUT(Functor=F.P, Relations=ftAlg_Rels),
F.MAP_INPUT(Functor=F.P, Relations=ftAlg_Rels),
"First_PT":
F.VALUE_OR(0.) @ F.MAP_INPUT(Functor=F.PT, Relations=ftAlg_Rels),
F.MAP_INPUT(Functor=F.PT, Relations=ftAlg_Rels),
"Sum_P":
F.VALUE_OR(0.) @ F.SUMCONE(Functor=F.P, Relations=ftAlg_Rels),
F.SUMCONE(Functor=F.P, Relations=ftAlg_Rels),
"Sum_PT":
F.VALUE_OR(0.) @ F.SUMCONE(Functor=F.PT, Relations=ftAlg_Rels),
F.SUMCONE(Functor=F.PT, Relations=ftAlg_Rels),
"Max_P":
F.VALUE_OR(0.) @ F.MAXCONE(Functor=F.P, Relations=ftAlg_Rels),
F.MAXCONE(Functor=F.P, Relations=ftAlg_Rels),
"Max_PT":
F.VALUE_OR(0.) @ F.MAXCONE(Functor=F.PT, Relations=ftAlg_Rels),
F.MAXCONE(Functor=F.PT, Relations=ftAlg_Rels),
"Min_P":
F.VALUE_OR(0.) @ F.MINCONE(Functor=F.P, Relations=ftAlg_Rels),
F.MINCONE(Functor=F.P, Relations=ftAlg_Rels),
"Min_PT":
F.VALUE_OR(0.) @ F.MINCONE(Functor=F.PT, Relations=ftAlg_Rels),
F.MINCONE(Functor=F.PT, Relations=ftAlg_Rels),
"Asym_P":
F.ASYM(Functor=F.P, Relations=ftAlg_Rels),
"Asym_PT":
Loading