- Timestamp:
- 06/14/12 11:41:35 (12 years ago)
- Location:
- branches/hpc33/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/hpc33/src/STLineFinder.cpp
r2562 r2568 884 884 // 885 885 886 STLineFinder::STLineFinder() throw() : edge(0,0) 886 STLineFinder::STLineFinder() throw() : edge(0,0), err("spurious") 887 887 { 888 888 setOptions(); … … 1048 1048 // presence of spectral lines 1049 1049 1050 AipsError spuriousError("spurious") ;1051 1052 1050 while (true) { 1053 1051 // a buffer for new lines found at this iteration … … 1064 1062 // throw AipsError("spurious"); // nothing new - use the same 1065 1063 // // code as for a real exception 1066 throw spuriousError; // nothing new - use the same1067 1064 throw err; // nothing new - use the same 1065 // code as for a real exception 1068 1066 } 1069 1067 catch(const AipsError &ae) { -
branches/hpc33/src/STLineFinder.h
r2012 r2568 48 48 #include "ScantableWrapper.h" 49 49 #include "Scantable.h" 50 #include "STFitter.h" 50 51 51 52 namespace asap { … … 161 162 const casa::Float &in_noise_box=-1., 162 163 const casa::Bool &in_median = casa::False) throw(); 164 165 void setDetailedOptions( const casa::Int &order=9 ) ; 163 166 164 167 // set the scan to work with (in_scan parameter) … … 266 269 // scantable (default = true) 267 270 bool useScantable; 271 272 // shared object for nominal throw 273 casa::AipsError err ; 268 274 }; 269 275
Note:
See TracChangeset
for help on using the changeset viewer.