Skip to content
Snippets Groups Projects
Commit ca4416eb authored by Zineb Aly's avatar Zineb Aly
Browse files

make yapf

parent 157ce85c
No related branches found
No related tags found
No related merge requests found
...@@ -45,6 +45,7 @@ def fitinf(fitparam, tracks): ...@@ -45,6 +45,7 @@ def fitinf(fitparam, tracks):
params = fit[count_nested(fit, axis=1) > index] params = fit[count_nested(fit, axis=1) > index]
return params[:, index] return params[:, index]
def fitparams(): def fitparams():
"""name of the fit parameters as defined in the official """name of the fit parameters as defined in the official
KM3NeT-Dataformat. KM3NeT-Dataformat.
...@@ -56,6 +57,7 @@ def fitparams(): ...@@ -56,6 +57,7 @@ def fitparams():
""" """
return fitparameters.keys() return fitparameters.keys()
def count_nested(Array, axis=0): def count_nested(Array, axis=0):
"""count elements in a nested awkward Array. """count elements in a nested awkward Array.
...@@ -80,6 +82,7 @@ def count_nested(Array, axis=0): ...@@ -80,6 +82,7 @@ def count_nested(Array, axis=0):
if axis == 2: if axis == 2:
return ak1.count(Array, axis=2) return ak1.count(Array, axis=2)
def best_track(tracks, strategy="first", rec_stages=None): def best_track(tracks, strategy="first", rec_stages=None):
"""best track selection based on different strategies """best track selection based on different strategies
...@@ -96,7 +99,6 @@ def best_track(tracks, strategy="first", rec_stages=None): ...@@ -96,7 +99,6 @@ def best_track(tracks, strategy="first", rec_stages=None):
# mask = tracks.rec_stages[] # mask = tracks.rec_stages[]
EVENTS_MAP = BranchMapper(name="events", EVENTS_MAP = BranchMapper(name="events",
key="Evt", key="Evt",
extra={ extra={
......
...@@ -36,6 +36,7 @@ class TestFitinf(unittest.TestCase): ...@@ -36,6 +36,7 @@ class TestFitinf(unittest.TestCase):
assert "JGANDALF_BETA0_RAD" in keys assert "JGANDALF_BETA0_RAD" in keys
class TestCountNested(unittest.TestCase): class TestCountNested(unittest.TestCase):
def test_count_nested(self): def test_count_nested(self):
fit = OFFLINE_FILE.events.tracks.fitinf fit = OFFLINE_FILE.events.tracks.fitinf
......
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