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

correct is_CC to account for USR._data

parent f3c33c5d
No related branches found
No related tags found
No related merge requests found
...@@ -769,6 +769,16 @@ def is_CC(fobj): ...@@ -769,6 +769,16 @@ def is_CC(fobj):
"""Determin if an event (or events) are a result of a Charged Curent interaction (CC) """Determin if an event (or events) are a result of a Charged Curent interaction (CC)
or a Neutral Curent interaction (NC). or a Neutral Curent interaction (NC).
According to: https://wiki.km3net.de/index.php/Simulations/The_gSeaGen_code#Physics_event_entries
the interaction types are defined as follow:
INTER Interaction type
1 EM
2 Weak[CC]
3 Weak[NC]
4 Weak[CC+NC+interference]
5 NucleonDecay
Parameters Parameters
---------- ----------
fobj : km3io.offline.OfflineReader fobj : km3io.offline.OfflineReader
...@@ -779,14 +789,16 @@ def is_CC(fobj): ...@@ -779,14 +789,16 @@ def is_CC(fobj):
len_w2lists = ak1.num(w2list, axis=1) len_w2lists = ak1.num(w2list, axis=1)
if all(len_w2lists <= 7): # old nu file have w2list of len 7. if all(len_w2lists <= 7): # old nu file have w2list of len 7.
usr = fobj.events.mc_tracks.usr_names usr_names = fobj.events.mc_tracks.usr_names
cc_flag = usr[:, 0][:, 3] usr_data = fobj.events.mc_tracks.usr
out = cc_flag == b"cc" # not very reliable, found NC files with cc flag! mask_cc_flag = (usr_names[:, 0] == b"cc")
inter_ID = usr_data[:, 0][mask_cc_flag]
out = ak1.flatten(inter_ID == 2) # 2 is the interaction ID for CC.
else: else:
if "gseagen" in program.lower(): if "gseagen" in program.lower():
cc_flag = w2list[:, kw2gsg.W2LIST_GSEAGEN_CC] cc_flag = w2list[:, kw2gsg.W2LIST_GSEAGEN_CC]
out = cc_flag > 0 out = cc_flag > 0 # to be tested with a newly generated nu file.
if "genhen" in program.lower(): if "genhen" in program.lower():
cc_flag = w2list[:, kw2gen.W2LIST_GENHEN_CC] cc_flag = w2list[:, kw2gen.W2LIST_GENHEN_CC]
out = cc_flag > 0 out = cc_flag > 0
......
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