Skip to content

Commit a460b9b

Browse files
committed
Added name of columns to .input_res.fit files
1 parent c4c3455 commit a460b9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fast++-write_output.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ void write_best_fits(const options_t& opts, const input_state_t& input, const gr
260260

261261
// Save fluxes
262262
fout.open(odir+opts.catalog+"_"+input.id[is]+".input_res.fit");
263-
fout << "# wl fl (x 10^-19 ergs s^-1 cm^-2 Angstrom^-1)\n";
263+
fout << "# wl fl_model fl_obs unc_obs (x 10^-19 ergs s^-1 cm^-2 Angstrom^-1)\n";
264264
for (uint_t il : range(input.lambda)) {
265265
fout << std::setw(13) << float(input.lambda[il])
266266
<< std::setw(13) << flx[il]

0 commit comments

Comments
 (0)