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

« back to all changes in this revision

Viewing changes to stdred/spec/libsrc/world.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 @(#)world.for 19.1 (ES0-DMD) 02/25/03 14:29:03
 
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
C Module: world.for
 
30
C Provides functions for the manipulation of world
 
31
C coordinates in spectroscopy packages
 
32
C
 
33
 
 
34
C-----------------------------------------------------
 
35
        FUNCTION XI_R8R8 (X, START, STEP)
 
36
 
 
37
         DOUBLE PRECISION XI_R8R8
 
38
         DOUBLE PRECISION X, START(1),STEP(1)
 
39
 
 
40
         XI_R8R8 = (X-START(1))/step(1) + 1.D0
 
41
 
 
42
        RETURN
 
43
        END
 
44
 
 
45
C----------------------------------------------------
 
46
        FUNCTION IX_IR8(I,START,STEP)
 
47
 
 
48
        DOUBLE  PRECISION IX_IR8, START(1),STEP(1)
 
49
        INTEGER I
 
50
 
 
51
          IX_IR8 = START(1) + (I-1.)*STEP(1)
 
52
 
 
53
        RETURN
 
54
        END
 
55
 
 
56
C----------------------------------------------------
 
57
        FUNCTION IX_R8R8(I,START,STEP)
 
58
 
 
59
        DOUBLE  PRECISION I, IX_R8R8, START(1),STEP(1)
 
60
 
 
61
          IX_R8R8 = START(1) + (I-1.)*STEP(1)
 
62
 
 
63
        RETURN
 
64
        END
 
65