~ubuntu-branches/debian/jessie/eso-midas/jessie

« back to all changes in this revision

Viewing changes to gui/XFilter/src/save_filt.c

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*===========================================================================
 
2
  Copyright (C) 1995-2009 European Southern Observatory (ESO)
 
3
 
 
4
  This program is free software; you can redistribute it and/or 
 
5
  modify it under the terms of the GNU General Public License as 
 
6
  published by the Free Software Foundation; either version 2 of 
 
7
  the License, or (at your option) any later version.
 
8
 
 
9
  This program is distributed in the hope that it will be useful,
 
10
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
  GNU General Public License for more details.
 
13
 
 
14
  You should have received a copy of the GNU General Public 
 
15
  License along with this program; if not, write to the Free 
 
16
  Software Foundation, Inc., 675 Massachusetss Ave, Cambridge, 
 
17
  MA 02139, USA.
 
18
 
 
19
  Corresponding concerning ESO-MIDAS should be addressed as follows:
 
20
        Internet e-mail: midas@eso.org
 
21
        Postal address: European Southern Observatory
 
22
                        Data Management Division 
 
23
                        Karl-Schwarzschild-Strasse 2
 
24
                        D 85748 Garching bei Muenchen 
 
25
                        GERMANY
 
26
 
 
27
.VERSION
 
28
 090826         last modif
 
29
 
 
30
===========================================================================*/
 
31
 
 
32
 
 
33
#include <stdio.h>
 
34
#include <string.h>
 
35
#include <globaldef.h>
 
36
#include <model.h>
 
37
 
 
38
 
 
39
extern void endname();
 
40
 
 
41
 
 
42
 
 
43
 
 
44
void    save_filt(name)
 
45
char    name[];
 
46
{
 
47
extern  struct s_filter F;
 
48
 
 
49
FILE    *out;
 
50
char    term[10];
 
51
 
 
52
if(strlen(name)!=0)
 
53
{
 
54
endname(name,term);
 
55
if(strcmp(term,"flt"))
 
56
        strcat(name,".flt");
 
57
}
 
58
else
 
59
        strcpy(name,"tmp.flt");
 
60
 
 
61
strcpy(F.filterfile,name);
 
62
 
 
63
out=fopen(name,"w");
 
64
 
 
65
fprintf(out,"# filter characteristic: %s\n",name);
 
66
fprintf(out,"cw\t%f\n",F.cw);
 
67
fprintf(out,"bw\t%f\n",F.bw);
 
68
fprintf(out,"peak\t%f\n",F.peak);
 
69
fprintf(out,"# red leak\n");
 
70
fprintf(out,"cwl\t%f\n",F.cwl);
 
71
fprintf(out,"bwl\t%f\n",F.bwl);
 
72
fprintf(out,"peakl\t%f\n",F.peakl);
 
73
 
 
74
fclose(out);
 
75
}