-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Events losses after splitting by trigger #42
Labels
invalid
This doesn't seem right
Comments
The reason of the issue is that I threw out events which don't have matched tracks and FORs: # take only matched tracks and fill vPhi arrays for inner and outer
df = df[(df.Inner_matched.apply(any) | df.Outer_matched.apply(any))][['entry', 'vPhiInner', 'vPhiOuter']].groupby('entry').sum() What is not necessary I guess. List of unmatched events(214):
|
Incorrect triggering of eventUnmatched tracks: fired chips doesn't match to fired FORs
Incorrect triggering of event
Correct triggered for event
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I faced a problem that after splitting event to triggered and untriggered I have a difference between origin total event count and
triggered event plus untriggered:
Definitely this is wrong
The text was updated successfully, but these errors were encountered: