File: analysis.cl

package info (click to toggle)
iraf-st4gem 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 30,316 kB
  • sloc: fortran: 4,161; ansic: 2,564; pascal: 1,092; lisp: 1,046; yacc: 969; makefile: 89; python: 18; sh: 7
file content (22 lines) | stat: -rw-r--r-- 556 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ANALYSIS.CL -- The STScI data analysis suite of packages

procedure analysis()
string	mode="al"

begin
	set dither     = "analysis$dither/"
	set fitting    = "analysis$fitting/"
	set fourier    = "analysis$fourier/"
	set isophote   = "analysis$isophote/"
        set nebular    = "analysis$nebular/"

	package analysis

	task dither.pkg 	= "dither$dither.cl"
	task fitting.pkg 	= "fitting$fitting.cl"
	task fourier.pkg 	= "fourier$fourier.cl"
	task isophote.pkg 	= "isophote$isophote.cl"
        task nebular.pkg        = "nebular$nebular.cl"

	cl()
end