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/ftppre.f | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pkg/tbtables/fitsio/ftppre.f (limited to 'pkg/tbtables/fitsio/ftppre.f') diff --git a/pkg/tbtables/fitsio/ftppre.f b/pkg/tbtables/fitsio/ftppre.f new file mode 100644 index 00000000..c6b9827b --- /dev/null +++ b/pkg/tbtables/fitsio/ftppre.f @@ -0,0 +1,29 @@ +C---------------------------------------------------------------------- + subroutine ftppre(ounit,group,felem,nelem,array,status) + +C Write an array of r*4 values 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 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 written +C array r the array of values to be written +C status i returned error stataus + +C written by Wm Pence, HEASARC/GSFC, June 1991 + + integer ounit,group,felem,nelem,status,row + real 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 ftpcle(ounit,2,row,felem,nelem,array,status) + end -- cgit