//
// LISA Constants {{ version }}
//
// Provides values sanctioned by the LISA Science Ground Segment (SGS) for
// physical constants and mission parameters.
//
// Authors:
//    Jean-Baptiste Bayle <j2b.bayle@gmail.com>
//    Aurelien Hees <aurelien.hees@obspm.fr>
//    Maude Lejeune <lejeune@apc.in2p3.fr>
//

#ifndef LISACONSTANTS_H
#define LISACONSTANTS_H
#include <stdbool.h>

#define LISACONSTANT_VERSION="{{ version }}"

{% for name, constant in constants.items() %}
/**
 {{ constant.description }}

 Unit: {{ constant.unit }}
 Error: {{ constant.error|string }}

 References:
{%- for reference in constant.references %}
   - {{ reference }}
{%- else %}
    No reference available
{%- endfor %}
**/
static const double LISA_{{ name }} = {{ constant.value }};
{% endfor %}

#endif
