Skip to content

Commit

Permalink
add MC uncertainties to the results.out file, fixes issue #14
Browse files Browse the repository at this point in the history
  • Loading branch information
scarlehoff committed Jun 17, 2022
1 parent 5cc5408 commit a215dd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Vrap.C
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a215dd9

Please sign in to comment.