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

« back to all changes in this revision

Viewing changes to applic/fit/libsrc/ftinfo.for

  • 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
C @(#)ftinfo.for        19.1 (ES0-DMD) 02/25/03 13:17:35
 
2
C===========================================================================
 
3
C Copyright (C) 1995 European Southern Observatory (ESO)
 
4
C
 
5
C This program is free software; you can redistribute it and/or 
 
6
C modify it under the terms of the GNU General Public License as 
 
7
C published by the Free Software Foundation; either version 2 of 
 
8
C the License, or (at your option) any later version.
 
9
C
 
10
C This program is distributed in the hope that it will be useful,
 
11
C but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
C MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
C GNU General Public License for more details.
 
14
C
 
15
C You should have received a copy of the GNU General Public 
 
16
C License along with this program; if not, write to the Free 
 
17
C Software Foundation, Inc., 675 Massachusetss Ave, Cambridge, 
 
18
C MA 02139, USA.
 
19
C
 
20
C Corresponding concerning ESO-MIDAS should be addressed as follows:
 
21
C       Internet e-mail: midas@eso.org
 
22
C       Postal address: European Southern Observatory
 
23
C                       Data Management Division 
 
24
C                       Karl-Schwarzschild-Strasse 2
 
25
C                       D 85748 Garching bei Muenchen 
 
26
C                       GERMANY
 
27
C===========================================================================
 
28
C
 
29
      SUBROUTINE FTINFO(NAME,TYPE,DVAR,NIND,NFUN,NDAT,ISTAT)                    
 
30
C++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++                   
 
31
C.COPYRIGHT: Copyright (c) 1987 European Southern Observatory,                  
 
32
C                                         all rights reserved                   
 
33
C                                                                               
 
34
C.VERSION: 1.0  ESO-FORTRAN Conversion, AA  17:25 - 13 JAN 1988                 
 
35
C                                                                               
 
36
C.LANGUAGE: F77+ESOext                                                          
 
37
C                                                                               
 
38
C.AUTHOR: J.D.PONZ                                                              
 
39
C                                                                               
 
40
C.IDENTIFICATION                                                                
 
41
C                                                                               
 
42
C  FITLIB.FOR   VERSION 1.0  27 MAR 1984                                        
 
43
C                                                                               
 
44
C.PURPOSE                                                                       
 
45
C                                                                               
 
46
C  INTERFACE ROUTINES FOR THE FITTING STRUCTURES                                
 
47
C READ GENERAL INFORMATION ON THE FIT                                           
 
48
C                                                                               
 
49
C.ALGORITHM                                                                     
 
50
C                                                                               
 
51
C  USE MIDAS I/O INTERFACES TO FRAMES AND TABLES                                
 
52
C                                                                               
 
53
C.KEYWORDS                                                                      
 
54
C                                                                               
 
55
C  NON LINEAR FITTING                                                           
 
56
C                                                                               
 
57
C                                                                               
 
58
C----------------------------------------------------------------               
 
59
C                                                                               
 
60
C      IMPLICIT NONE                                                            
 
61
C                                                                               
 
62
C OUTPUT PARAMETERS                                                             
 
63
C NAME CHAR FILE NAME                                                           
 
64
C TYPE CHAR FILE TYPE                                                           
 
65
C DVAR INTG DEP VAR                                                             
 
66
C NIND INTG NO. OF IND VAR                                                      
 
67
C NFUN INTG NO. OF FITTED FUNCTIONS                                             
 
68
C NDAT INTG NO. OF FITTED POINTS                                                
 
69
C                                                                               
 
70
C OUTPUT PARAMETERS                                                             
 
71
C ISTAT INTG STATUS RETURN                                                      
 
72
C                                                                               
 
73
      INTEGER NIND,NFUN,NDAT,ISTAT
 
74
      CHARACTER*(*) NAME,TYPE                                                   
 
75
      INTEGER DVAR                                                              
 
76
       INCLUDE 'MID_INCLUDE:FITI.INC/NOLIST'                                     
 
77
       INCLUDE 'MID_INCLUDE:FITC.INC/NOLIST'                                     
 
78
C                                                                               
 
79
      NAME   = FZNAME                                                         
 
80
      TYPE   = FZTYPE                                                         
 
81
      DVAR   = FZDVAR                                                         
 
82
      NIND   = FZNIND                                                         
 
83
      NFUN   = FZNFUN                                                         
 
84
      NDAT   = FZNDAT                                                         
 
85
      RETURN                                                                    
 
86
                                                                                
 
87
      END