source: trunk/src/Utils/VOParam.cc @ 912

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

First lot of changes aimed at addressing #135 - moving VOParam to a separate file, and changing the interface so that we define it using the constructor.

File size: 3.8 KB
Line 
1// -----------------------------------------------------------------------
2// VOParam.cc: 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#include <iostream>
30#include <sstream>
31#include <duchamp/Utils/VOParam.hh>
32
33namespace duchamp {
34
35  VOParam::VOParam()
36  {
37  }
38 
39  template <class T> VOParam::VOParam(std::string n, std::string U, std::string d, T v, int w, std::string u):
40    name(n),UCD(U),datatype(d),width(w),units(u)
41  {
42    /// @details
43    /// A basic definition function, defining each parameter
44    /// individually. The value (v) is written to a stringstream, and
45    /// from there stored as a string.
46    /// \param n The name
47    /// \param U The UCD
48    /// \param d The datatype
49    /// \param v The value
50    /// \param w The width
51    /// \param u The units
52
53    // this->name = n;
54    // this->UCD = U;
55    // this->datatype = d;
56    // this->width = w;
57    std::stringstream ss;
58    ss << v;
59    this->value = ss.str();
60    // this->units = u;
61  }
62  template VOParam::VOParam(std::string n, std::string U, std::string d, int v, int w, std::string u);
63  template VOParam::VOParam(std::string n, std::string U, std::string d, unsigned int v, int w, std::string u);
64  template VOParam::VOParam(std::string n, std::string U, std::string d, long v, int w, std::string u);
65  template VOParam::VOParam(std::string n, std::string U, std::string d, float v, int w, std::string u);
66  template VOParam::VOParam(std::string n, std::string U, std::string d, double v, int w, std::string u);
67  template VOParam::VOParam(std::string n, std::string U, std::string d, std::string v, int w, std::string u);
68
69  VOParam::VOParam(const VOParam& other)
70  {
71    operator=(other);
72  }
73
74  VOParam& VOParam::operator= (const VOParam& other)
75  {
76    if(this==&other) return *this;
77    this->name = other.name;
78    this->UCD = other.UCD;
79    this->datatype=other.datatype;
80    this->width = other.width;
81    this->value = other.value;
82    this->units = other.units;
83    return *this;
84  }
85 
86
87  void VOParam::printParam(std::ostream &stream)
88  {
89    /// @details
90    /// Print the Param entry with appropriate formatting.
91    /// \param stream The output stream to send the text to.
92
93    stream << "<PARAM name=\"" <<this->name
94           << "\" ucd=\"" << this->UCD
95           << "\" datatype=\"" << this->datatype;
96    if(this->units!="")
97      stream << "\" units=\"" << this->units;
98    if(this->width!=0){
99      if(datatype=="char")
100        stream << "\" arraysize=\"" << this->width;
101      else
102        stream << "\" width=\"" << this->width;
103    }
104    stream << "\" value=\"" << this->value
105           << "\"/>\n";
106  }
107
108  //------------------------------------------------
109
110
111
112}
Note: See TracBrowser for help on using the repository browser.