From 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Tue, 11 Aug 2015 16:51:37 -0400 Subject: Repatch (from linux) of OSX IRAF --- pkg/tbtables/fitsio/ftggpb.f | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkg/tbtables/fitsio/ftggpb.f (limited to 'pkg/tbtables/fitsio/ftggpb.f') diff --git a/pkg/tbtables/fitsio/ftggpb.f b/pkg/tbtables/fitsio/ftggpb.f new file mode 100644 index 00000000..a3fc10b1 --- /dev/null +++ b/pkg/tbtables/fitsio/ftggpb.f @@ -0,0 +1,31 @@ +C---------------------------------------------------------------------- + subroutine ftggpb(iunit,group,fparm,nparm,array,status) + +C Read an array of group parameter values from 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 read). + +C iunit i Fortran unit number +C group i number of the data group, if any +C fparm i the first group parameter be read (starting with 1) +C nparm i number of group parameters to be read +C array b returned array of values that were read +C status i returned error stataus + +C written by Wm Pence, HEASARC/GSFC, June 1991 + + integer iunit,group,fparm,nparm,status,row + character*1 nulval,array(*) + logical anynul,flgval + +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 +C set nulval to blank to inhibit checking for undefined values + nulval=' ' + row=max(1,group) + call ftgclb(iunit,1,row,fparm,nparm,1,1,nulval, + & array,flgval,anynul,status) + end -- cgit