1 /********************************************************************
2 MakeProfiles - Create mock astronomical profiles.
3 MakeProfiles 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) 2015-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 ONEPROFILE_H
24 #define ONEPROFILE_H
25 
26 #include "mkprof.h"
27 
28 int
29 oneprofile_ispsf(uint8_t fcolvalue);
30 
31 void
32 oneprofile_set_prof_params(struct mkonthread *mkp);
33 
34 void
35 oneprofile_make(struct mkonthread *mkp);
36 
37 #endif
38