From 89084705ee91d1f2cb6f1c07621c753c031dd12f Mon Sep 17 00:00:00 2001 From: Richard Methot Date: Thu, 21 Aug 2025 14:08:30 -0700 Subject: [PATCH 1/2] remove global MSY from default reports --- SS_readstarter.tpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SS_readstarter.tpl b/SS_readstarter.tpl index 348b4a70..d6696dc9 100644 --- a/SS_readstarter.tpl +++ b/SS_readstarter.tpl @@ -540,6 +540,7 @@ { pick_report_use(k) = "Y"; } + pick_report_use(55) = "N"; // GLOBAL_MSY report:55 } if (reportdetail == 3) { @@ -561,7 +562,7 @@ } } - for (k = 1; k <= 60; k++) + for (k = 1; k <= 61; k++) echoinput << k << " " << pick_report_use(k) << " " << pick_report_name(k) << endl; // clang-format off END_CALCS From 09688922a620af5dec03d2e6448d85d28cd9e254 Mon Sep 17 00:00:00 2001 From: Richard Methot Date: Thu, 21 Aug 2025 15:56:33 -0700 Subject: [PATCH 2/2] small tweak to table list --- SS_write_report.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SS_write_report.tpl b/SS_write_report.tpl index 49816d9d..2ccfc224 100644 --- a/SS_write_report.tpl +++ b/SS_write_report.tpl @@ -311,7 +311,7 @@ FUNCTION void write_bigoutput() SS2out << endl << "# vector_with_report_usage" << endl; - for (k = 1; k <= 60; k++) + for (k = 1; k <= 61; k++) { SS2out << " " << pick_report_use(k); }