Input Format
The bundled examples/example_spec.txt file uses six columns:
absorption velocity
absorption spectrum
absorption spectrum error
emission velocity
emission spectrum
emission spectrum error
The bundled example stores the second column directly as 1 - exp(-tau),
so it is kept unchanged before fitting:
from spec_rt import load_six_column_spectrum
x, y, yerr, xemi, yemi, yemi_err = load_six_column_spectrum(
"examples/example_spec.txt",
absorption_format="one_minus_exp_tau",
)
After loading, y is guaranteed to be in the expected 1 - exp(-tau)
form, and the helper also drops non-finite emission rows.
Use spec_rt.validate_absorption_input() to confirm that the
absorption baseline remains close to zero before fitting.
Common checks
The absorption array passed to
SpectraDecomposingmust already be1 - exp(-tau).The absorption baseline should be close to zero outside the line.
Error columns must be positive; rows with non-positive errors are dropped before fitting.
Emission rows with non-finite velocity, intensity, or error values are dropped by
load_six_column_spectrum.
If your raw absorption file stores transmission as exp(-tau), use:
load_six_column_spectrum("my_transmission_file.txt", absorption_format="transmission")
If your file already stores 1 - exp(-tau), use:
load_six_column_spectrum("examples/example_spec.txt", absorption_format="one_minus_exp_tau")