aboutsummaryrefslogtreecommitdiff
path: root/pkg/tbtables/fitsio/ftppru.f
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/tbtables/fitsio/ftppru.f
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'pkg/tbtables/fitsio/ftppru.f')
-rw-r--r--pkg/tbtables/fitsio/ftppru.f24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkg/tbtables/fitsio/ftppru.f b/pkg/tbtables/fitsio/ftppru.f
new file mode 100644
index 00000000..3c0f6f3a
--- /dev/null
+++ b/pkg/tbtables/fitsio/ftppru.f
@@ -0,0 +1,24 @@
+C----------------------------------------------------------------------
+ subroutine ftppru(ounit,group,felem,nelem,status)
+
+C set elements of the primary array equal to the undefined value
+
+C ounit i Fortran output unit number
+C group i number of the data group, if any
+C felem i the first pixel to be written (this routine treats
+C the primary array a large one dimensional array of
+C values, regardless of the actual dimensionality).
+C nelem i number of data elements to be set to undefined
+C status i returned error stataus
+
+C written by Wm Pence, HEASARC/GSFC, June 1991
+
+ integer ounit,group,felem,nelem,status,row
+
+C the primary array is represented as a binary table:
+C each group of the primary array is a row in the table,
+C where the first column contains the group parameters
+C and the second column contains the image itself
+ row=max(group,1)
+ call ftpclu(ounit,2,row,felem,nelem,status)
+ end