]> git.pld-linux.org Git - packages/perl-Astro-FITS-Header.git/blame - perl-Astro-FITS-Header-CFITSIO.diff
e31cde85d4bd8509c1923f47e353f48e perl-Astro-FITS-Header-CFITSIO.diff
[packages/perl-Astro-FITS-Header.git] / perl-Astro-FITS-Header-CFITSIO.diff
CommitLineData
0a353e47 1--- Astro-FITS-Header-2.2.orig/CFITSIO/CFITSIO.pm Wed Jul 24 23:04:43 2002
2+++ Astro-FITS-Header-2.2/CFITSIO/CFITSIO.pm Wed Jul 24 23:13:55 2002
3@@ -50,7 +50,7 @@
4
5 =head1 DESCRIPTION
6
7-This module makes use of the L<CFITSIO|CFITSIO> module to read and write
8+This module makes use of the L<Astro::FITS::CFITSIO|Astro::FITS::CFITSIO> module to read and write
9 directly to a FITS HDU.
10
11 It stores information about a FITS header block in an object. Takes an hash as an arguement, with either an array reference pointing to an array of FITS header cards, or a filename, or (alternatively) and FITS identifier.
12@@ -65,7 +65,7 @@
13 use Astro::FITS::Header::Item;
14 use base qw/ Astro::FITS::Header /;
15
16-use CFITSIO qw / :longnames :constants /;
17+use Astro::FITS::CFITSIO qw / :longnames :constants /;
18 use Carp;
19
20 '$Revision$ ' =~ /.*:\s(.*)\s\$/ && ($VERSION = $1);
21@@ -108,7 +108,7 @@
22 if (exists $args{fitsID}) {
23 $ifits = $args{fitsID};
24 } elsif (exists $args{File}) {
25- $ifits = CFITSIO::open_file( $args{File}, CFITSIO::READWRITE(), $status );
26+ $ifits = Astro::FITS::CFITSIO::open_file( $args{File}, Astro::FITS::CFITSIO::READWRITE(), $status );
27 } else {
28 croak("Arguement hash does not contain fitsID, File or Cards");
29 }
30@@ -179,7 +179,7 @@
31 if (exists $args{fitsID}) {
32 $ifits = $args{fitsID};
33 } elsif (exists $args{File}) {
34- $ifits = CFITSIO::open_file( $args{File}, CFITSIO::READWRITE(), $status );
35+ $ifits = Astro::FITS::CFITSIO::open_file( $args{File}, Astro::FITS::CFITSIO::READWRITE(), $status );
36 } else {
37 croak("Argument hash does not contain fitsID, File or Cards");
38 }
39@@ -238,12 +238,12 @@
40
41 =head1 NOTES
42
43-This module requires Pete Ratzlaff's L<CFITSIO|CFITSIO> module,
44+This module requires Pete Ratzlaff's L<Astro::FITS::CFITSIO|Astro::FITS::CFITSIO> module,
45 and William Pence's C<cfitsio> subroutine library (v2.1 or greater).
46
47 =head1 SEE ALSO
48
49-L<Astro::FITS::Header>, L<Astro::FITS::Header::Item>, L<Astro::FITS::Header::NDF>, L<CFITSIO>
50+L<Astro::FITS::Header>, L<Astro::FITS::Header::Item>, L<Astro::FITS::Header::NDF>, L<Astro::FITS::CFITSIO>
51
52 =head1 AUTHORS
53
This page took 0.064299 seconds and 4 git commands to generate.