From a215dd905a29b0fded0d013a6aec50938fb498b0 Mon Sep 17 00:00:00 2001 From: juacrumar Date: Fri, 17 Jun 2022 11:21:26 +0200 Subject: [PATCH] add MC uncertainties to the results.out file, fixes issue #14 --- src/Vrap.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Vrap.C b/src/Vrap.C index 1c38d4a..849ee7b 100644 --- a/src/Vrap.C +++ b/src/Vrap.C @@ -254,7 +254,7 @@ int main(int argc,char* argv[]){ piner.create_grid(order_flag, pow(Q, 2), coll); DVector temp_ans = rap_y(); std::cout << "\nFinal result: " << temp_ans[0] << " +/- " << temp_ans[1] << std::endl; - results << Q << " " << y << " " << temp_ans[0] << std::endl; + results << Q << " " << y << " " << temp_ans[0] << " " << temp_ans[1] << std::endl; } piner.rebin(qy_bins);