KaiHabermann / decayangle

https://kaihabermann.github.io/decayangle/
MIT License
1 stars 1 forks source link

[Test] function for circular ordering in 3b decay #24

Closed mmikhasenko closed 6 months ago

mmikhasenko commented 6 months ago

give example of

"""
((1,2),3)
((2,3),1)
((3,1),2)
"""
def circular_order(x):
    return 1

tg.sorting_key = circular_order