star-line

Structure for accelerating line importance sampling
git clone git://git.meso-star.fr/star-line.git
Log | Files | Refs | README | LICENSE

commit e3c0d4d325b0b561bb9baa61dec0d11b7f1dba96
parent 6c156c13f19227540059a4d003344cb7baf2509c
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed, 27 Apr 2022 11:19:24 +0200

Remove the Lorentz line profile

Diffstat:
Msrc/sln.h | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/sln.h b/src/sln.h @@ -52,7 +52,6 @@ struct shtr_lines_list; enum sln_line_profile { SLN_LINE_PROFILE_VOIGT, - SLN_LINE_PROFILE_LORENTZ, SLN_LINE_PROFILES_COUNT__ }; @@ -107,7 +106,7 @@ struct sln_tree_create_args { }; #define SLN_TREE_CREATE_ARGS_DEFAULT__ \ {NULL, NULL, {SLN_MOLECULE_NULL__}, 0, {0, DBL_MAX}, 0, 0, 64, \ - SLN_LINE_PROFILE_LORENTZ} + SLN_LINE_PROFILE_VOIGT} static const struct sln_tree_create_args SLN_TREE_CREATE_ARGS_DEFAULT = SLN_TREE_CREATE_ARGS_DEFAULT__;