Merge lp:~m-a-uchida/maus/TrackerDevelopmentMAU into lp:maus/merge

Proposed by Melissa Uchida
Status: Merged
Merged at revision: 995
Proposed branch: lp:~m-a-uchida/maus/TrackerDevelopmentMAU
Merge into: lp:maus/merge
Diff against target: 18 lines (+3/-3)
1 file modified
src/common_cpp/DataStructure/SciFiTrack.cc (+3/-3)
To merge this branch: bzr merge lp:~m-a-uchida/maus/TrackerDevelopmentMAU
Reviewer Review Type Date Requested Status
MAUS Maintainers Pending
Review via email: mp+280335@code.launchpad.net
To post a comment you must log in.
995. By Adam Dobbs

Merge: Fix an error in the data quality flag IsGood function to allow the rating to consistently work from 1 best to 5 worst

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/common_cpp/DataStructure/SciFiTrack.cc'
2--- src/common_cpp/DataStructure/SciFiTrack.cc 2015-11-12 12:36:22 +0000
3+++ src/common_cpp/DataStructure/SciFiTrack.cc 2015-12-11 17:22:42 +0000
4@@ -121,11 +121,11 @@
5
6 if (number_spacepoints == 5 &&
7 good_pval) {
8- rating = 5;
9+ rating = 1;
10 } else if (good_pval) {
11- rating = 4;
12+ rating = 2;
13 } else {
14- rating = 1;
15+ rating = 5;
16 }
17
18 return rating;

Subscribers

People subscribed via source and target branches