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

« back to all changes in this revision

Viewing changes to contrib/invent/incl/invent.inc

  • 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 @(#)invent.inc        19.1 (ESO-IPG) 02/25/03 13:25:22
 
2
C+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 
3
C.IDENTIFICATION: INV_INC
 
4
C.LANGUAGE:       ESO-FOR
 
5
C.AUTHOR:         A. Kruszewski
 
6
C.KEYWORDS:
 
7
C.ENVIRONMENT:    MIDAS
 
8
C.COMMENTS:
 
9
C.VERSION:        1.0      02-DEC-1988:      Creation
 
10
C.VERSION:        1.1      13-Oct-1995:      Increate MAXCNT and MAXDET - RHW
 
11
C
 
12
C-----------------------------------------------------------------------
 
13
C
 
14
C      LPBUF  Maximum size of array holding informations about how the
 
15
C             frame is divided into regions in ANALYSE. Number and size
 
16
C             of regions will be adjusted at run time to agree with LPBUF.
 
17
C
 
18
C      MAXCNT Maximum number of objects in SEARCH and ANALYSE. Program
 
19
C             will abort if that limit is exceeded.
 
20
C
 
21
C      MAXDET Maximum number of detections in SEARCH. Program will abort
 
22
C             if that limit is exceeded.
 
23
C
 
24
C      MAXNET Maximum number of horizontal subregions in SEARCH. Number
 
25
C             and size of regions will be adjusted at run time to agree
 
26
C             with MAXNET. 
 
27
C
 
28
C      MAXSCN Maximum length of a scanning rectangle applied in SEARCH.
 
29
C             Only minor impairment of treatment of very large objects
 
30
C             if exceeded.
 
31
C
 
32
C      MAXSUB Maximum half edge of subarrays used for individual objects.
 
33
C             Only very large objects can be affected if too small.
 
34
C
 
35
C      MPSF   Maximum number of stars used determination of one
 
36
C             dimensional point spread function.
 
37
C
 
38
C      NOSP   Maximum number of standard stars used to determine two
 
39
C             dimensional p.s.f. for a single subpixel.
 
40
C
 
41
 
 
42
      INTEGER         LPBUF
 
43
      PARAMETER      (LPBUF = 1024)
 
44
      INTEGER         MAXCNT
 
45
      PARAMETER      (MAXCNT = 16384)
 
46
      INTEGER         MAXDET
 
47
      PARAMETER      (MAXDET = 32768)
 
48
      INTEGER         MAXNET
 
49
      PARAMETER      (MAXNET = 32)
 
50
      INTEGER         MAXSCN
 
51
      PARAMETER      (MAXSCN = 1024)
 
52
      INTEGER         MAXSUB
 
53
      PARAMETER      (MAXSUB = 50)
 
54
      INTEGER         MAXTBL
 
55
      PARAMETER      (MAXTBL = 128)
 
56
      INTEGER         MPSF
 
57
      PARAMETER      (MPSF = 1024)
 
58
      INTEGER         NIPAR
 
59
      PARAMETER      (NIPAR = 10)
 
60
      INTEGER         NOSP
 
61
      PARAMETER      (NOSP = 16)
 
62
      INTEGER         NRPAR
 
63
      PARAMETER      (NRPAR = 32)