aboutsummaryrefslogtreecommitdiff
path: root/pkg/xtools/clgsec.x
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
committerJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
commit40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch)
tree4464880c571602d54f6ae114729bf62a89518057 /pkg/xtools/clgsec.x
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/xtools/clgsec.x')
-rw-r--r--pkg/xtools/clgsec.x57
1 files changed, 57 insertions, 0 deletions
diff --git a/pkg/xtools/clgsec.x b/pkg/xtools/clgsec.x
new file mode 100644
index 00000000..2c3149d8
--- /dev/null
+++ b/pkg/xtools/clgsec.x
@@ -0,0 +1,57 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+include <mach.h>
+include <ctype.h>
+include <imhdr.h>
+
+define FIRST 1
+define LAST MAX_LONG
+define STEP 1
+
+# CLGSEC -- Get an image section and decode it.
+#
+# A section string may be either a null string or bracketed by [].
+# The arrays x1, x2, and step are initialized to FIRST, LAST, and STEP.
+# The number of subscripts decoded is returned in nsubscripts.
+# This routine uses the same decode routine as IMIO.
+
+procedure clgsec (prompt, section, x1, x2, step, nsubscripts)
+
+char prompt[ARB]
+char section[ARB]
+long x1[IM_MAXDIM]
+long x2[IM_MAXDIM]
+long step[IM_MAXDIM]
+int nsubscripts
+
+int i, ip
+
+begin
+ # Get section string.
+ call clgstr (prompt, section ,SZ_LINE)
+
+ # Set default values.
+ nsubscripts = 0
+ call amovkl (long (FIRST), x1, IM_MAXDIM)
+ call amovkl (long (LAST), x2, IM_MAXDIM)
+ call amovkl (long (STEP), step, IM_MAXDIM)
+
+ # Skip leading whitespace.
+ ip = 1
+ while (IS_WHITE(section[ip]))
+ ip = ip + 1
+
+ # Check for absent section.
+ if (section[ip] == EOS)
+ return
+
+ # Check for start of section string.
+ if (section[ip] != '[')
+ call error (0, "Invalid image section")
+
+ # Decode section.
+ ip = ip + 1
+ for (i=1; i <= IM_MAXDIM && section[ip] != ']'; i=i+1)
+ call im_decode_subscript (section, ip, x1[i], x2[i], step[i])
+ nsubscripts = i - 1
+end