
Astro::QDP::Parse - extract Data from a QDP input file

use Astro::QDP::Parse qw/ :all /;
$rawlines = read_qdpfile( $filename );
( $data, $hdr ) = parse_qdp( $rawlines, \%options );
( $data, $hdr ) = parse_qdpfile( $filename, \%options );

Astro::QDP::Parse processes files in QDP format (e.g., the QDP output written by XSPEC's wenv command). The QDP file contains QDP commands specifying how the data are to be read, data records and optional PLT commands.
The QDP format encodes data as one or more sets of data vectors, where a set of vectors consists of a single "independent" vector and one or more "dependent" data vectors of the same length. Each pairing of a dependent vector with its matching "independent" vector is considered a separate data group.
A data vector consists of a data column and zero, one, or two error columns.


$lines = read_qdpfile( $filename );
This function reads data the named QDP file, and returns an array containing logical records. (Lines ending with '-' (the QDP line continuation character) are concatenated to generate the logical lines). It does not interpolate files accessed via the PLT @filename command.
($data, $hdr) = parse_qdp( \@lines, \%options );
The function extracts the data in the passed array (which must contain data and QDP or PLT command records) and returns the encoded data groups and other metadata. The input array of lines is typically that returned by read_qdpfile. See also parse_qdpfile for a more turnkey approach.
The data is returned as an array of hashes, one per data group, in the order the groups were read from the input file. Each hash has the following keys:
Data vectors are represented as hashes, with the following keys:
hdgThe zero based index of the vector within its containing data set. The x data vector always has hdg == 0.
vdgThe zero based index of the data set within the set of data sets which contains the vector.
dgThe unary based index of the data group containing the vector. This corresponds to QDP's numbering of data groups.
errtypeThis indicates the number of errors associated with the data, either 0, 1 for symmetric sided errors and 2 for asymmetric errors.
dataA array (or piddle, if the as_pdl option was specified) containing the data.
errA array (or piddle, if the as_pdl option was specified) containing the symmetric error, if available. If the normalize option was specified, then the symmetric error is made available via the elo and ehi elements and this element is not present.
eloA array (or piddle, if the as_pdl option was specified) containing the lower assymmetric error, if available.
ehiA array (or piddle, if the as_pdl option was specified) containing the upper assymmetric error, if available.
The meta-data are returned via the $hdr hash, with the following keys:
pltAn array containing the list of PLT commands in the QDP file.
The available options are:
($data, $hdr) = parse_qdpfile( $filename, \%options );
parse_qdpfile combines the read_qdpfile and parse_qdp functions and takes the same optoins as parse_qdp.

piddle output requested, but PDL is not availableThe as_pdl option was specified, but the PDL module is not installed.
read_qdpfile: unable to open %sThe specified QDP file does not exist or is not readable.
no data in qdp file?No data records were found in the QDP file.
unexpected number of data points: got %d expected %dA data record contained fewer or more data columns than was expected.
unrecognized argument to PLT skip command: %sThe argument to the PLT skip command in the QDP file (or in a file specified via a @filename PLT command was not recognized.

Astro::QDP::Parse requires no configuration files or environment variables.

Required Modules:
Clone
IO::File
Regexp::Common
List::Util
List::MoreUtils
Params::Validate;
Optional Modules:
PDL::Core

None reported.

No bugs have been reported.
Please report any bugs or feature requests to bug-astro-qdp-parse@rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Astro-QDP-Parse.

The QDP web page at http://wwwastro.msfc.nasa.gov/qdp/.

Version 0.13

Copyright (c) 2008 The Smithsonian Astrophysical Observatory
Astro::QDP::Parse is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.

Terry Gaetz <tgaetz@cpan.org>
Diab Jerius <djerius@cpan.org>