blob: dba19b08d3b6279f429557c34ee903476fad2a87 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#{ OBSUTIL.CL -- Observing utilities package.
package obsutil
# Logical directories
set obssrc = "obsutil$src/"
set ccdtimesrc = "obssrc$ccdtime/"
set pairmass = "obssrc$pairmass/"
set sptime = "obssrc$sptime/"
set sptimelib = "sptime$lib/"
set specfocus = "obssrc$specfocus/"
set starfocus = "obssrc$starfocus/"
# Executable Tasks
task bitcount = "obssrc$x_obsutil.e"
task ccdtime = "ccdtimesrc$x_obsutil.e"
task pairmass = "pairmass$x_obsutil.e"
task specfocus = "specfocus$x_obsutil.e"
task sptime,
$cgiparse = "sptime$x_obsutil.e"
task psfmeasure,
starfocus = "starfocus$x_obsutil.e"
# Script Tasks
task findgain = "obssrc$findgain.cl"
task shutcor = "obssrc$shutcor.cl"
# Pset Tasks
task specpars = "sptime$specpars.par"
# User Tasks.
if (access (obsutil.custom//"scripts.cl"))
cl (< obsutil.custom//"scripts.cl")
else
;
clbye
|