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

« back to all changes in this revision

Viewing changes to stdred/ccdred/proc/eso_descr.prg

  • 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
! @(#)eso_descr.prg     19.1 (ES0-DMD) 02/25/03 14:16:03
 
2
!+++++++++++++++++++++++++++++++++++++++++++++++++++++++
 
3
!.COPYRIGHT (C) 1993 European Southern Observatory
 
4
!.IDENT     eso_descr.prg
 
5
!.AUTHOR    Rein H. Warmels,  ESO-Garching
 
6
!.KEYWORDS  Direct imaging, CCD package
 
7
!.PURPOSE   Setup procedure for internal ccd keywords structure
 
8
!.VERSION   920416  RHW  Creation
 
9
!.VERSION   930121  RHW  Inclusion of exposure type and time
 
10
!.VERSION   950103  RHW  Simplification; deletion of keywords in ccdinit.prg
 
11
!
 
12
!---------------------------|---------------------| ---------------------------
 
13
! Do NOT write/change here  | ESO standard descr. ! Comments
 
14
!---------------------------| --------------------| ---------------------------
 
15
!
 
16
! *** here store the ESO standard descriptor names in the CCD keywords
 
17
WRITE/KEYW   .IDENT/C/1/20    "IDENT"             ! object ident. descriptor
 
18
WRITE/KEYW   .OBSER/C/1/20    "OBSERVER"          ! observer descriptor
 
19
WRITE/KEYW   .TELES/C/1/20    "ESO.TEL.ID"        ! telescope ID descriptor
 
20
WRITE/KEYW   .INSTR/C/1/20    "INSTRUME"          ! instrument ID descriptor
 
21
WRITE/KEYW   .DETEC/C/1/20    "ESO.DET.ID"        ! detector ID descriptor
 
22
WRITE/KEYW   .BINNING/C/1/20  "?"                 ! binning in x and y
 
23
WRITE/KEYW   .DIRECT/C/1/20   "?"                 ! readout direction
 
24
WRITE/KEYW   .READMOD/C/1/20  "ESO.DET.MODE"      ! readout mode
 
25
WRITE/KEYW   .READON/C/1/20   "ESO.DET.READON"    ! readout noise per AD unit
 
26
WRITE/KEYW   .AD_VAL/C/1/20   "ESO.DET.AD_VALUE"  ! analog to digital descr.
 
27
WRITE/KEYW   EXP_DESC/C/1/20  "ESO.GEN.EXPO.TYPE" ! exposure type descriptor
 
28
WRITE/KEYW   O_DESC/C/1/20    "O_TIME(7)"         ! exposure time descriptor
 
29
!
 
30
!
 
31
! *** here for the default column names of the association table
 
32
WRITE/KEYW   SC_COL/C/1/10    "SCI"               ! standard sci column name
 
33
WRITE/KEYW   BS_COL/C/1/10    "BIAS_MAST"         ! standard bias column name
 
34
WRITE/KEYW   DK_COL/C/1/10    "DK_MAST"           ! standard dark column name
 
35
WRITE/KEYW   FF_COL/C/1/10    "FF_MAST"           ! standard flat column name
 
36
WRITE/KEYW   SK_COL/C/1/10    "FFSKY_MAST"        ! standard sky column name
 
37
WRITE/KEYW   IL_COL/C/1/10    "IL_MAST"           ! standard illum. column name
 
38
WRITE/KEYW   FR_COL/C/1/10    "FR_MAST"           ! standard fringe column name
 
39
!
 
40
!---------------------------|---------------------!----------------------------
 
41
! Do NOT write/change here  | ESO standard descr. ! Comments
 
42
!---------------------------| --------------------|----------------------------
 
43