1 /*********************************************************************
2 CosmicCalculator - Calculate cosmological parameters
3 CosmicCalculator is part of GNU Astronomy Utilities (Gnuastro) package.
4 
5 Original author:
6      Mohammad Akhlaghi <mohammad@akhlaghi.org>
7 Contributing author(s):
8 Copyright (C) 2017-2021, Free Software Foundation, Inc.
9 
10 Gnuastro is free software: you can redistribute it and/or modify it
11 under the terms of the GNU General Public License as published by the
12 Free Software Foundation, either version 3 of the License, or (at your
13 option) any later version.
14 
15 Gnuastro is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 General Public License for more details.
19 
20 You should have received a copy of the GNU General Public License
21 along with Gnuastro. If not, see <http://www.gnu.org/licenses/>.
22 **********************************************************************/
23 #ifndef AUTHORS_CITE_H
24 #define AUTHORS_CITE_H
25 
26 /* When any specific citation is necessary, please add its BibTeX (from ADS
27    hopefully) to this variable along with a title decribing what this
28    paper/book does for the progarm in a short line. In the following line
29    put a row of '-' with the same length and then put the BibTeX.
30 
31    This macro will be used in 'gal_options_print_citation' function of
32    'lib/options.c' (from the top Gnuastro source code directory). */
33 
34 #define PROGRAM_BIBTEX ""
35 
36 #define PROGRAM_AUTHORS "Mohammad Akhlaghi"
37 
38 #endif
39