Changeset 1353
- Timestamp:
- 04/26/07 14:55:17 (18 years ago)
- Location:
- trunk/src
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/LineCatalog.h
r1295 r1353 35 35 * @param name the name of the ASCII file or aips++ table 36 36 */ 37 LineCatalog(const std::string& name = "jpl");37 explicit LineCatalog(const std::string& name = "jpl"); 38 38 39 39 virtual ~LineCatalog() {} -
trunk/src/Logger.h
r1106 r1353 36 36 * @param[in] enabled indicating the deafult state 37 37 */ 38 Logger(bool enabled);38 explicit Logger(bool enabled); 39 39 40 40 /* -
trunk/src/RowAccumulator.h
r1295 r1353 33 33 * Constructor taking a weight type as defined in @ref STDefs 34 34 */ 35 RowAccumulator(WeightType wt = asap::NONE);35 explicit RowAccumulator(WeightType wt = asap::NONE); 36 36 37 37 ~RowAccumulator(); -
trunk/src/STFiller.h
r1060 r1353 51 51 * @param stbl 52 52 */ 53 STFiller(casa::CountedPtr< Scantable > stbl);53 explicit STFiller(casa::CountedPtr< Scantable > stbl); 54 54 55 55 … … 60 60 * @param whichBeam read a specific beam only (default -1 means all beams) 61 61 */ 62 STFiller( const std::string& filename, int whichIF=-1,62 explicit STFiller( const std::string& filename, int whichIF=-1, 63 63 int whichBeam=-1 ); 64 64 -
trunk/src/STFillerWrapper.h
r872 r1353 27 27 //# AUSTRALIA 28 28 //# 29 //# $Id :$29 //# $Id$ 30 30 //#--------------------------------------------------------------------------- 31 31 #ifndef STFILLERWRAPPER_H … … 42 42 public: 43 43 STFillerWrapper() {;} 44 STFillerWrapper(const std::string& filename, int ifSel=-1, int beamSel=-1) :44 explicit STFillerWrapper(const std::string& filename, int ifSel=-1, int beamSel=-1) : 45 45 STFiller(filename, ifSel, beamSel) {;} 46 STFillerWrapper(ScantableWrapper tbl) :46 explicit STFillerWrapper(ScantableWrapper tbl) : 47 47 STFiller(tbl.getCP()){;} 48 48 ScantableWrapper getScantable() const { -
trunk/src/STFit.h
r972 r1353 31 31 public: 32 32 STFit() {;} 33 STFit(casa::Table tab);34 STFit( const Scantable& parent);33 explicit STFit(casa::Table tab); 34 explicit STFit( const Scantable& parent); 35 35 36 36 virtual ~STFit(); -
trunk/src/STFocus.h
r957 r1353 30 30 public: 31 31 STFocus() {;} 32 STFocus(casa::Table tab);33 STFocus( const Scantable& parent );32 explicit STFocus(casa::Table tab); 33 explicit STFocus( const Scantable& parent ); 34 34 35 35 virtual ~STFocus(); -
trunk/src/STFrequencies.h
r921 r1353 32 32 public: 33 33 STFrequencies() {;} 34 STFrequencies(casa::Table tab);35 STFrequencies(const Scantable& parent);34 explicit STFrequencies(casa::Table tab); 35 explicit STFrequencies(const Scantable& parent); 36 36 37 37 virtual ~STFrequencies(); -
trunk/src/STHistory.h
r860 r1353 30 30 public: 31 31 STHistory() {;} 32 STHistory(casa::Table tab);33 STHistory( const Scantable& parent );32 explicit STHistory(casa::Table tab); 33 explicit STHistory( const Scantable& parent ); 34 34 35 35 virtual ~STHistory(); -
trunk/src/STLineFinder.h
r991 r1353 83 83 // start channel and stop+1 84 84 public: 85 IntersectsWith(const std::pair<int,int> &in_line1);85 explicit IntersectsWith(const std::pair<int,int> &in_line1); 86 86 // return true if line2 intersects with line1 with at least one 87 87 // common channel, and false otherwise … … 95 95 // start channel and stop+1 96 96 public: 97 BuildUnion(const std::pair<int,int> &line1);97 explicit BuildUnion(const std::pair<int,int> &line1); 98 98 // update temp_line with a union of temp_line and new_line 99 99 // provided there is no gap between the lines … … 109 109 // start channel and stop+1 110 110 public: 111 LaterThan(const std::pair<int,int> &in_line1);111 explicit LaterThan(const std::pair<int,int> &in_line1); 112 112 113 113 // return true if line2 should be placed later than line1 -
trunk/src/STMath.h
r1308 r1353 46 46 * @param insitu the toggle for this behaviour 47 47 */ 48 STMath(bool insitu=true);48 explicit STMath(bool insitu=true); 49 49 50 50 virtual ~STMath(); -
trunk/src/STMathWrapper.h
r1308 r1353 32 32 public: 33 33 STMathWrapper() {;} 34 STMathWrapper(bool insitu) : STMath(insitu) {;}34 explicit STMathWrapper(bool insitu) : STMath(insitu) {;} 35 35 36 36 virtual ~STMathWrapper() {;} -
trunk/src/STMolecules.h
r870 r1353 30 30 public: 31 31 STMolecules() {;} 32 STMolecules(casa::Table tab);33 STMolecules( const Scantable& parent);32 explicit STMolecules(casa::Table tab); 33 explicit STMolecules( const Scantable& parent); 34 34 35 35 virtual ~STMolecules(); -
trunk/src/STPolCircular.h
r1189 r1353 40 40 STPolCircular() {} 41 41 42 STPolCircular(const casa::Matrix<casa::Float>& specs)42 explicit STPolCircular(const casa::Matrix<casa::Float>& specs) 43 43 { setSpectra(specs); } 44 44 -
trunk/src/STPolLinear.h
r1007 r1353 39 39 STPolLinear() {} 40 40 41 STPolLinear(const casa::Matrix<casa::Float>& specs)41 explicit STPolLinear(const casa::Matrix<casa::Float>& specs) 42 42 { setSpectra(specs); } 43 43 -
trunk/src/STPolStokes.h
r910 r1353 28 28 STPolStokes() {} 29 29 30 STPolStokes(const casa::Matrix<casa::Float>& specs)30 explicit STPolStokes(const casa::Matrix<casa::Float>& specs) 31 31 { setSpectra(specs); } 32 32 -
trunk/src/STTcal.h
r856 r1353 31 31 public: 32 32 STTcal() {;} 33 STTcal(casa::Table tab);34 STTcal( const Scantable& parent);33 explicit STTcal(casa::Table tab); 34 explicit STTcal( const Scantable& parent); 35 35 36 36 virtual ~STTcal(); -
trunk/src/STWeather.h
r856 r1353 30 30 public: 31 31 STWeather() {;} 32 STWeather(casa::Table tab);33 STWeather(const Scantable& parent);32 explicit STWeather(casa::Table tab); 33 explicit STWeather(const Scantable& parent); 34 34 35 35 virtual ~STWeather(); -
trunk/src/STWriter.h
r995 r1353 55 55 class STWriter : public Logger { 56 56 public: 57 STWriter(const string &format = "SDFITS");57 explicit STWriter(const string &format = "SDFITS"); 58 58 virtual ~STWriter(); 59 59 -
trunk/src/STWriterWrapper.h
r995 r1353 45 45 //STWriterWrapper() {;} 46 46 virtual ~STWriterWrapper() {;} 47 STWriterWrapper(const string& format = "SDFITS") : STWriter(format) {;}47 explicit STWriterWrapper(const string& format = "SDFITS") : STWriter(format) {;} 48 48 49 49 casa::Int write(const ScantableWrapper& table, const string &filename) {
Note:
See TracChangeset
for help on using the changeset viewer.