File: template.h

package info (click to toggle)
iraf 2.18.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 86,000 kB
  • sloc: ansic: 115,890; fortran: 74,576; lisp: 18,888; yacc: 5,642; sh: 961; lex: 596; makefile: 509; asm: 159; csh: 54; xml: 33; sed: 4
file content (21 lines) | stat: -rw-r--r-- 569 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# TEMPLATE.H -- Structure used to expand image names over groups

define	LEN_TPSTRUCT	5

define	TP_ROOTPTR	Memi[$1]	# Pointer to image root name
define	TP_SECTPTR	Memi[$1+1]	# Pointer to image section
define	TP_START	Memi[$1+2]	# First group
define	TP_COUNT	Memi[$1+3]	# Total number of groups
define	TP_INDEX	Memi[$1+4]	# Current group

define	TP_ROOT		Memc[TP_ROOTPTR($1)]
define	TP_SECT		Memc[TP_SECTPTR($1)]

define	TP_EXT_LIST	"|stf|fxf|oif|plf|qpf|"

define	TP_UNKNOWN	0
define	TP_GEIS		1
define	TP_FITS		2
define	TP_IRAF		3
define	TP_PIXLIST	4
define	TP_QPOE		5