Skip to content

Commit faa5ec1

Browse files
authored
Merge pull request #186 from jase231/chisq_hypothesis_comparison
Chi-squared hypothesis tool: Change default matching mode to best combo per beam
2 parents 392c6a3 + 3aaf559 commit faa5ec1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

programs/chisq_hypothesis_comparison/config.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ tree = pi0pi0__B4_M7_M7
2424
[Misc]
2525
; empty string specifies default output naming convention
2626
outfile = 5_hypo_comparison_big.root
27-
best_per_beam = false
27+
best_per_beam = true
2828
preserve_combos = true
2929
logging = false

programs/chisq_hypothesis_comparison/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ int main(int argc, char* argv[]) {
3131

3232
// optional configs
3333
std::string out_file = reader.Get("Misc", "outfile", "placeholder");
34-
bool best_by_beam = reader.GetBoolean("Misc", "best_per_beam", false);
34+
bool best_by_beam = reader.GetBoolean("Misc", "best_per_beam", true);
3535
bool preserve_combos = reader.GetBoolean("Misc", "preserve_combos", true);
3636
bool logging = reader.GetBoolean("Misc", "logging", false);
3737

0 commit comments

Comments
 (0)