aboutsummaryrefslogtreecommitdiff
path: root/pkg/tbtables/fitsio/ftpgpd.f
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/tbtables/fitsio/ftpgpd.f
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/tbtables/fitsio/ftpgpd.f')
-rw-r--r--pkg/tbtables/fitsio/ftpgpd.f27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkg/tbtables/fitsio/ftpgpd.f b/pkg/tbtables/fitsio/ftpgpd.f
new file mode 100644
index 00000000..186df96c
--- /dev/null
+++ b/pkg/tbtables/fitsio/ftpgpd.f
@@ -0,0 +1,27 @@
+C----------------------------------------------------------------------
+ subroutine ftpgpd(ounit,group,fparm,nparm,array,status)
+
+C Write an array of group parmeters into the primary array.
+C Data conversion and scaling will be performed if necessary
+C (e.g, if the datatype of the FITS array is not the same
+C as the array being written).
+
+C ounit i Fortran output unit number
+C group i number of the data group, if any
+C fparm i the first group parameter to be written (starting with 1)
+C nparm i number of group parameters to be written
+C array d the array of group parameters to be written
+C status i returned error stataus
+
+C written by Wm Pence, HEASARC/GSFC, June 1991
+
+ integer ounit,group,fparm,nparm,status,row
+ double precision array(*)
+
+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 ftpcld(ounit,1,row,fparm,nparm,array,status)
+ end