08-Feb-1998

Demonstration 1:

cq> type test_25.cl

time

cmkimg ("*1325*_c1??_???.fits",
"r1325_c1_loops", 2, 6, 4, yes, 10, 4, "B", "real", "real", yes)

mv cmkimg.log cmkimg_r1325_c1.log

cq> cl < test_25.cl
Sun 15:45:21 08-Feb-98
dcheck_nloops: 1       # result from imgets o.k
dcheck_totalndr: 16     # o.k.
totloop: 1              # change back the string value into integer
totndr: 16 
Loop: 1 
RC pairs:6  2 
naxis1: 512 
 <<=========== CCSTRIPE DONE ==============>>

You need to rename  rc*_?p if you wish to use them later

   << ========= CMKIMG DONE =========== >>

cq> cl < test_25.cl &
[3]
cq> Sun 15:46:14 08-Feb-98
dcheck_nloops: 512      # WRONG
dcheck_totalndr: 16
totloop: 512 
totndr: 16 
Input files IMCOMPLETE

[3] stopped waiting for parameter input   ???

-------------------------------------------------------------------------
Demonstration 2: (using simple script to test the problem)

cq>cq> type test_imgets.cl
string ss1, ss2

imgets("coma_1325_c1q1_001.fits", param="nloops")
ss1 = imgets.value
print("ss1 = ", ss1)

imgets("coma_1325_c1q1_001.fits",param="i_title")
ss2 = imgets.value
print("ss2 = ", ss2)
cq> cl < test_imgets.cl
ss1 = 1                         #  o.k.
ss2 =                coma       # o.k.
cq> 
cq> 
cq> cl < test_imgets.cl &
[4]
cq> ss1 =                coma      # WRONG, nloops should be equal to 1
ss2 =                coma

[