1 | //#---------------------------------------------------------------------------
|
---|
2 | //# SDMemTableWrapper.h: Wrapper classes to use CountedPtr
|
---|
3 | //#---------------------------------------------------------------------------
|
---|
4 | //# Copyright (C) 2004
|
---|
5 | //# Malte Marquarding, ATNF
|
---|
6 | //#
|
---|
7 | //# This program is free software; you can redistribute it and/or modify it
|
---|
8 | //# under the terms of the GNU General Public License as published by the Free
|
---|
9 | //# Software Foundation; either version 2 of the License, or (at your option)
|
---|
10 | //# any later version.
|
---|
11 | //#
|
---|
12 | //# This program is distributed in the hope that it will be useful, but
|
---|
13 | //# WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
---|
15 | //# Public License for more details.
|
---|
16 | //#
|
---|
17 | //# You should have received a copy of the GNU General Public License along
|
---|
18 | //# with this program; if not, write to the Free Software Foundation, Inc.,
|
---|
19 | //# 675 Massachusetts Ave, Cambridge, MA 02139, USA.
|
---|
20 | //#
|
---|
21 | //# Correspondence concerning this software should be addressed as follows:
|
---|
22 | //# Internet email: Malte.Marquarding@csiro.au
|
---|
23 | //# Postal address: Malte Marquarding,
|
---|
24 | //# Australia Telescope National Facility,
|
---|
25 | //# P.O. Box 76,
|
---|
26 | //# Epping, NSW, 2121,
|
---|
27 | //# AUSTRALIA
|
---|
28 | //#
|
---|
29 | //# $Id:
|
---|
30 | //#---------------------------------------------------------------------------
|
---|
31 | #ifndef _SDMEMTABLEWRAPPER_H_
|
---|
32 | #define _SDMEMTABLEWRAPPER_H_
|
---|
33 |
|
---|
34 | #include <vector>
|
---|
35 | #include <string>
|
---|
36 |
|
---|
37 | #include "SDMemTable.h"
|
---|
38 | #include "SDReader.h"
|
---|
39 | #include "SDMath.h"
|
---|
40 |
|
---|
41 | namespace atnf_sd {
|
---|
42 |
|
---|
43 | class SDMemTableWrapper {
|
---|
44 |
|
---|
45 | public:
|
---|
46 | SDMemTableWrapper(const std::string& name = "SDinput.tbl") :
|
---|
47 | table_(new SDMemTable(name)) {;}
|
---|
48 | SDMemTableWrapper(CountedPtr<SDMemTable> cp) : table_(cp) {;}
|
---|
49 | SDMemTableWrapper(SDMemTable* sdmt) : table_(sdmt) {;}
|
---|
50 |
|
---|
51 | SDMemTableWrapper(const SDMemTableWrapper& mt, int scan) :
|
---|
52 | table_(new SDMemTable(mt.getCP()->table(), scan)) {;}
|
---|
53 |
|
---|
54 | SDMemTableWrapper getScan(int scan) {
|
---|
55 | return SDMemTableWrapper(*this, scan);
|
---|
56 | }
|
---|
57 | std::vector<float> getSpectrum(int whichRow) const {
|
---|
58 | return table_->getSpectrum(whichRow);
|
---|
59 | }
|
---|
60 | float getTsys(int whichRow) {return table_->getTsys(whichRow);}
|
---|
61 | double getTime(int whichRow) {return table_->getTime(whichRow);}
|
---|
62 |
|
---|
63 | std::vector<bool> getMask() const { return table_->getMask(); }
|
---|
64 |
|
---|
65 | std::string getSourceName(int whichRow) {
|
---|
66 | return table_->getSourceName(whichRow);
|
---|
67 | }
|
---|
68 |
|
---|
69 | bool setIF(int whichIF=0) {return table_->setIF(whichIF);}
|
---|
70 | bool setBeam(int whichBeam=0) {return table_->setBeam(whichBeam);}
|
---|
71 | bool setPol(int whichPol=0) {return table_->setPol(whichPol);}
|
---|
72 |
|
---|
73 | int getIF() {return table_->getIF();}
|
---|
74 | int getBeam() {return table_->getBeam();}
|
---|
75 | int getPol() {return table_->getPol();}
|
---|
76 |
|
---|
77 |
|
---|
78 | //sets the mask
|
---|
79 | bool setChannels(const std::vector<int>& whichChans) {
|
---|
80 | return setChannels(whichChans);
|
---|
81 | }
|
---|
82 | void makePersistent(const std::string& fname) {
|
---|
83 | table_->makePersistent(fname);
|
---|
84 | }
|
---|
85 | CountedPtr<SDMemTable> getCP() const {return table_;}
|
---|
86 | void summary() { table_->summary(); }
|
---|
87 | std::string name() { return table_->name(); }
|
---|
88 |
|
---|
89 | private:
|
---|
90 | CountedPtr<SDMemTable> table_;
|
---|
91 | };
|
---|
92 |
|
---|
93 | class SDReaderWrapper : public SDReader {
|
---|
94 | public:
|
---|
95 | SDReaderWrapper() {;}
|
---|
96 | SDReaderWrapper(SDMemTableWrapper tbl) :
|
---|
97 | SDReader(tbl.getCP()){;}
|
---|
98 | SDMemTableWrapper getSDMemTable() const {
|
---|
99 | return SDMemTableWrapper(getTable());
|
---|
100 | }
|
---|
101 | };
|
---|
102 |
|
---|
103 | class SDMathWrapper {
|
---|
104 | public:
|
---|
105 | SDMemTableWrapper average(const SDMemTableWrapper& sdt) {
|
---|
106 | return SDMemTableWrapper(SDMath::average(sdt.getCP()));
|
---|
107 | }
|
---|
108 | };
|
---|
109 |
|
---|
110 | } // namespace
|
---|
111 |
|
---|
112 | #endif
|
---|
113 |
|
---|