-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #703 from kochebina/CoinSortOptions
Remove keep-options in policy for CoinSorter
- Loading branch information
Showing
3 changed files
with
59 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,16 +39,29 @@ class GateDigitizerMgr; | |
|
||
// 01/2016 Rewritten completely by [email protected] | ||
|
||
// 2023 Added to GND [email protected] | ||
|
||
/* | ||
09/24 [email protected] | ||
Simplification of number of options for multiple coincidences | ||
remove "keep" and replace (or remove if double) with "take", | ||
i.e. all coincidecnes are now written on disk | ||
keepIfAllAreGoods = takeWinnerIfAllAreGoods | ||
keepIfOnlyOneGood = takeWinnerIfOnlyOneGood | ||
keepIfAnyIsGood = takeWinnerOfGoods | ||
kKeepAll = removed | ||
*/ | ||
typedef enum {kKillAll, | ||
kTakeAllGoods, | ||
kKillAllIfMultipleGoods, | ||
kTakeWinnerOfGoods, | ||
kTakeWinnerIfIsGood, | ||
kTakeWinnerIfAllAreGoods, | ||
kKeepIfAllAreGoods, | ||
kKeepIfOnlyOneGood, | ||
kKeepIfAnyIsGood, | ||
kKeepAll} multiple_policy_t; | ||
kTakeWinnerIfOnlyOneGood | ||
//kKeepIfOnlyOneGood, | ||
//kKeepIfAnyIsGood, | ||
//kKeepAll | ||
} multiple_policy_t; | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters