source: tags/release-1.1.5/src/Cubes/VOTable.hh @ 1441

Last change on this file since 1441 was 441, checked in by MatthewWhiting, 16 years ago

Cleaning up, and commenting.

File size: 2.9 KB
Line 
1// -----------------------------------------------------------------------
2// VOTable.hh: Output of the detected objects to a VOTable
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
29#ifndef VOTABLE_HH
30#define VOTABLE_HH
31
32#include <iostream>
33#include <sstream>
34#include <fstream>
35#include <iomanip>
36#include <string>
37#include <vector>
38#include <time.h>
39#include <duchamp/param.hh>
40#include <duchamp/fitsHeader.hh>
41#include <duchamp/Cubes/cubes.hh>
42#include <duchamp/Detection/detection.hh>
43#include <duchamp/Detection/columns.hh>
44 
45
46namespace duchamp
47{
48
49  /**
50   *  A class that holds information for a <FIELD > entry in a
51   *  VOTable. It also provides useful functions to store and print
52   *  that information.
53   */
54  class VOField
55  {
56  public:
57    void define(std::string i, std::string n, std::string U, std::string u, std::string d, std::string r, int w, int p);
58    void define(Column::Col column, std::string i, std::string U, std::string d, std::string r);
59    void define(Column::Col);
60    void setUCD(std::string u){UCD=u;};
61
62    void printField(std::ostream &stream);
63   
64  private:
65    std::string ID;
66    std::string name;
67    std::string UCD;
68    std::string unit;
69    std::string datatype;
70    std::string ref;
71    int width;
72    int precision;
73
74  };
75
76  /**
77   *  A class that holds information for a <PARAM > entry in a
78   *  VOTable. It also provides useful functions to store and print
79   *  that information.
80   */
81  class VOParam
82  {
83  public:
84    template <class T> void define(std::string n, std::string U, std::string d, T v, int w);
85 
86    void printParam(std::ostream &stream);
87   
88  private:
89    std::string name;
90    std::string UCD;
91    std::string datatype;
92    std::string value;
93    int width;
94   
95  };
96
97}
98
99#endif //VOTABLE_HH
Note: See TracBrowser for help on using the repository browser.