source: trunk/src/Outputs/VOTableCatalogueWriter.hh

Last change on this file was 1424, checked in by MatthewWhiting, 7 years ago

Applying patch from ASKAPsoft development, where we allow more
flexibility in specifying the RESOURCE and TABLE names for the VOTable
output.
ASKAPSDP revision r6758

File size: 2.7 KB
RevLine 
[1069]1// -----------------------------------------------------------------------
2// VOTableCatalogueWriter.hh: Writing output catalogues to VOTable files
3// -----------------------------------------------------------------------
4// Copyright (C) 2006, Matthew Whiting, ATNF
5//
6// This program is free software; you can redistribute it and/or modify it
7// under the terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 2 of the License, or (at your
9// option) any later version.
10//
11// Duchamp is distributed in the hope that it will be useful, but WITHOUT
12// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14// for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with Duchamp; if not, write to the Free Software Foundation,
18// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
19//
20// Correspondence concerning Duchamp may be directed to:
21//    Internet email: Matthew.Whiting [at] atnf.csiro.au
22//    Postal address: Dr. Matthew Whiting
23//                    Australia Telescope National Facility, CSIRO
24//                    PO Box 76
25//                    Epping NSW 1710
26//                    AUSTRALIA
27// -----------------------------------------------------------------------
[1048]28#ifndef DUCHAMP_VOTABLE_CATALOGUE_WRITER_H_
29#define DUCHAMP_VOTABLE_CATALOGUE_WRITER_H_
30
31#include <duchamp/Outputs/CatalogueWriter.hh>
[1070]32#include <duchamp/Outputs/FileCatalogueWriter.hh>
[1048]33#include <duchamp/Detection/detection.hh>
[1049]34#include <ios>
[1048]35#include <iostream>
36#include <fstream>
37#include <string>
38
39namespace duchamp {
40
[1299]41    class VOTableCatalogueWriter : public FileCatalogueWriter
42    {
43    public:
44        VOTableCatalogueWriter();
45        VOTableCatalogueWriter(std::string name);
46        VOTableCatalogueWriter(const VOTableCatalogueWriter& other);
47        VOTableCatalogueWriter& operator= (const VOTableCatalogueWriter& other);
48        virtual ~VOTableCatalogueWriter(){};
[1048]49
[1299]50        /// @brief Write header information - not including parameters
51        void writeHeader();
52       
53        /// @brief Write the XML namespace definition
54        void writeNamespace();
55        /// @brief Write the Space-Time-Coordinate information, using the WCS
56        void writeSTC();
[1048]57
[1299]58        void writeParameter(VOParam param);
59        void writeParameters();
60        void writeStats();
61        void writeTableHeader();
62        void writeEntry(Detection *object);
[1048]63
[1299]64        void writeFooter();
[1048]65
[1424]66        void setResourceName(std::string s){itsResourceName=s;};
[1299]67        void setTableName(std::string s){itsTableName=s;};
68        void setTableDescription(std::string s){itsTableDescription=s;};
[1048]69
[1299]70    protected:
[1424]71        std::string itsResourceName;
[1299]72        std::string itsTableName;
73        std::string itsTableDescription;
74    };
[1048]75
76}
77
78#endif
Note: See TracBrowser for help on using the repository browser.