Changeset 2961
- Timestamp:
- 06/29/14 16:29:17 (10 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asapfitter.py
r2681 r2961 157 157 158 158 if self.data is not None: 159 if self.data._getflagrow(row): 160 raise RuntimeError,"Can not fit flagged row." 159 161 self.x = self.data._getabcissa(row) 160 162 self.y = self.data._getspectrum(row) -
trunk/src/STLineFinder.cpp
r2774 r2961 980 980 // taking flagged channels into account 981 981 if (useScantable) { 982 if (scan->getFlagRow(whichRow)) 983 throw AipsError("STLineFinder::findLines - flagged scantable row."); 982 984 vector<bool> flaggedChannels = scan->getMask(whichRow); 983 985 if (flaggedChannels.size()) {
Note:
See TracChangeset
for help on using the changeset viewer.