source: trunk/src/Outputs/VOTableCatalogueWriter.hh @ 1069

Last change on this file since 1069 was 1069, checked in by MatthewWhiting, 12 years ago

Adding the licensing text to files that didn't have it.

File size: 2.6 KB
Line 
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// -----------------------------------------------------------------------
28#ifndef DUCHAMP_VOTABLE_CATALOGUE_WRITER_H_
29#define DUCHAMP_VOTABLE_CATALOGUE_WRITER_H_
30
31#include <duchamp/Outputs/CatalogueWriter.hh>
32#include <duchamp/Detection/detection.hh>
33#include <ios>
34#include <iostream>
35#include <fstream>
36#include <string>
37
38namespace duchamp {
39
40  class VOTableCatalogueWriter : public CatalogueWriter
41  {
42  public:
43    VOTableCatalogueWriter();
44    VOTableCatalogueWriter(std::string name);
45    VOTableCatalogueWriter(const VOTableCatalogueWriter& other);
46    VOTableCatalogueWriter& operator= (const VOTableCatalogueWriter& other);
47    virtual ~VOTableCatalogueWriter(){};
48
49    /// @brief open the catalogue for writing
50    bool openCatalogue(std::ios_base::openmode mode = std::ios_base::out);
51
52    /// @brief Write header information - not including parameters
53    void writeHeader();
54
55    void writeParameters();
56    void writeStats();
57    void writeTableHeader();
58    void writeEntries();
59    void writeEntry(Detection *object);
60
61    void writeFooter();
62
63    bool closeCatalogue();
64
65    void setTableName(std::string s){itsTableName=s;};
66    void setTableDescription(std::string s){itsTableDescription=s;};
67
68  protected:
69    std::ofstream itsFileStream;
70    std::string itsTableName;
71    std::string itsTableDescription;
72  };
73
74}
75
76#endif
Note: See TracBrowser for help on using the repository browser.