//#--------------------------------------------------------------------------- //# STLineFinder.cc: A class for automated spectral line search //#-------------------------------------------------------------------------- //# Copyright (C) 2004 //# ATNF //# //# This program is free software; you can redistribute it and/or modify it //# under the terms of the GNU General Public License as published by the Free //# Software Foundation; either version 2 of the License, or (at your option) //# any later version. //# //# This program is distributed in the hope that it will be useful, but //# WITHOUT ANY WARRANTY; without even the implied warranty of //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General //# Public License for more details. //# //# You should have received a copy of the GNU General Public License along //# with this program; if not, write to the Free Software Foundation, Inc., //# 675 Massachusetts Ave, Cambridge, MA 02139, USA. //# //# Correspondence concerning this software should be addressed as follows: //# Internet email: Malte.Marquarding@csiro.au //# Postal address: Malte Marquarding, //# Australia Telescope National Facility, //# P.O. Box 76, //# Epping, NSW, 2121, //# AUSTRALIA //# //# $Id: STLineFinder.cpp 1320 2007-03-02 00:02:27Z mar637 $ //#--------------------------------------------------------------------------- // ASAP #include "STLineFinder.h" #include "STFitter.h" // STL #include #include #include #include using namespace asap; using namespace casa; using namespace std; namespace asap { /////////////////////////////////////////////////////////////////////////////// // // RunningBox - a running box calculator. This class implements // iterations over the specified spectrum and calculates // running box filter statistics. // class RunningBox { // The input data to work with. Use reference symantics to avoid // an unnecessary copying const casa::Vector &spectrum; // a buffer for the spectrum const casa::Vector &mask; // associated mask const std::pair &edge; // start and stop+1 channels // to work with // statistics for running box filtering casa::Float sumf; // sum of fluxes casa::Float sumf2; // sum of squares of fluxes casa::Float sumch; // sum of channel numbers (for linear fit) casa::Float sumch2; // sum of squares of channel numbers (for linear fit) casa::Float sumfch; // sum of flux*(channel number) (for linear fit) int box_chan_cntr; // actual number of channels in the box int max_box_nchan; // maximum allowed number of channels in the box // (calculated from boxsize and actual spectrum size) // cache for derivative statistics mutable casa::Bool need2recalculate; // if true, values of the statistics // below are invalid mutable casa::Float linmean; // a value of the linear fit to the // points in the running box mutable casa::Float linvariance; // the same for variance int cur_channel; // the number of the current channel int start_advance; // number of channel from which the box can // be moved (the middle of the box, if there is no // masking) public: // set up the object with the references to actual data // as well as the number of channels in the running box RunningBox(const casa::Vector &in_spectrum, const casa::Vector &in_mask, const std::pair &in_edge, int in_max_box_nchan) throw(AipsError); // access to the statistics const casa::Float& getLinMean() const throw(AipsError); const casa::Float& getLinVariance() const throw(AipsError); const casa::Float aboveMean() const throw(AipsError); int getChannel() const throw(); // actual number of channels in the box (max_box_nchan, if no channels // are masked) int getNumberOfBoxPoints() const throw(); // next channel void next() throw(AipsError); // checking whether there are still elements casa::Bool haveMore() const throw(); // go to start void rewind() throw(AipsError); protected: // supplementary function to control running mean calculations. // It adds a specified channel to the running mean box and // removes (ch-maxboxnchan+1)'th channel from there // Channels, for which the mask is false or index is beyond the // allowed range, are ignored void advanceRunningBox(int ch) throw(casa::AipsError); // calculate derivative statistics. This function is const, because // it updates the cache only void updateDerivativeStatistics() const throw(AipsError); }; // /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // // LFAboveThreshold An algorithm for line detection using running box // statistics. Line is detected if it is above the // specified threshold at the specified number of // consequtive channels. Prefix LF stands for Line Finder // class LFAboveThreshold : protected LFLineListOperations { // temporary line edge channels and flag, which is True if the line // was detected in the previous channels. std::pair cur_line; casa::Bool is_detected_before; int min_nchan; // A minimum number of consequtive // channels, which should satisfy // the detection criterion, to be // a detection casa::Float threshold; // detection threshold - the // minimal signal to noise ratio std::list > &lines; // list where detections are saved // (pair: start and stop+1 channel) RunningBox *running_box; // running box filter casa::Vector signs; // An array to store the signs of // the value - current mean // (used to search wings) casa::Int last_sign; // a sign (+1, -1 or 0) of the // last point of the detected line // public: // set up the detection criterion LFAboveThreshold(std::list > &in_lines, int in_min_nchan = 3, casa::Float in_threshold = 5) throw(); virtual ~LFAboveThreshold() throw(); // replace the detection criterion void setCriterion(int in_min_nchan, casa::Float in_threshold) throw(); // return the array with signs of the value-current mean // An element is +1 if value>mean, -1 if less, 0 if equal. // This array is updated each time the findLines method is called and // is used to search the line wings const casa::Vector& getSigns() const throw(); // find spectral lines and add them into list // if statholder is not NULL, the accumulate function of it will be // called for each channel to save statistics // spectrum, mask and edge - reference to the data // max_box_nchan - number of channels in the running box void findLines(const casa::Vector &spectrum, const casa::Vector &mask, const std::pair &edge, int max_box_nchan) throw(casa::AipsError); protected: // process a channel: update curline and is_detected before and // add a new line to the list, if necessary using processCurLine() // detect=true indicates that the current channel satisfies the criterion void processChannel(Bool detect, const casa::Vector &mask) throw(casa::AipsError); // process the interval of channels stored in curline // if it satisfies the criterion, add this interval as a new line void processCurLine(const casa::Vector &mask) throw(casa::AipsError); // get the sign of runningBox->aboveMean(). The RunningBox pointer // should be defined casa::Int getAboveMeanSign() const throw(); }; // /////////////////////////////////////////////////////////////////////////////// } // namespace asap /////////////////////////////////////////////////////////////////////////////// // // RunningBox - a running box calculator. This class implements // interations over the specified spectrum and calculates // running box filter statistics. // // set up the object with the references to actual data // and the number of channels in the running box RunningBox::RunningBox(const casa::Vector &in_spectrum, const casa::Vector &in_mask, const std::pair &in_edge, int in_max_box_nchan) throw(AipsError) : spectrum(in_spectrum), mask(in_mask), edge(in_edge), max_box_nchan(in_max_box_nchan) { rewind(); } void RunningBox::rewind() throw(AipsError) { // fill statistics for initial box box_chan_cntr=0; // no channels are currently in the box sumf=0.; // initialize statistics sumf2=0.; sumch=0.; sumch2=0.; sumfch=0.; int initial_box_ch=edge.first; for (;initial_box_ch=edge.first && ch=edge.first && ch2remove=start_advance) advanceRunningBox(cur_channel+max_box_nchan/2); // update statistics } // checking whether there are still elements casa::Bool RunningBox::haveMore() const throw() { return cur_channel > &in_lines, int in_min_nchan, casa::Float in_threshold) throw() : min_nchan(in_min_nchan), threshold(in_threshold), lines(in_lines), running_box(NULL) {} LFAboveThreshold::~LFAboveThreshold() throw() { if (running_box!=NULL) delete running_box; } // replace the detection criterion void LFAboveThreshold::setCriterion(int in_min_nchan, casa::Float in_threshold) throw() { min_nchan=in_min_nchan; threshold=in_threshold; } // get the sign of runningBox->aboveMean(). The RunningBox pointer // should be defined casa::Int LFAboveThreshold::getAboveMeanSign() const throw() { const Float buf=running_box->aboveMean(); if (buf>0) return 1; if (buf<0) return -1; return 0; } // process a channel: update cur_line and is_detected before and // add a new line to the list, if necessary void LFAboveThreshold::processChannel(Bool detect, const casa::Vector &mask) throw(casa::AipsError) { try { if (is_detected_before) { // we have to check that the current detection has the // same sign of running_box->aboveMean // otherwise it could be a spurious detection if (last_sign && last_sign!=getAboveMeanSign()) detect=False; } if (detect) { last_sign=getAboveMeanSign(); if (is_detected_before) cur_line.second=running_box->getChannel()+1; else { is_detected_before=True; cur_line.first=running_box->getChannel(); cur_line.second=running_box->getChannel()+1; } } else processCurLine(mask); } catch (const AipsError &ae) { throw; } catch (const exception &ex) { throw AipsError(String("LFAboveThreshold::processChannel - STL error: ")+ex.what()); } } // process the interval of channels stored in cur_line // if it satisfies the criterion, add this interval as a new line void LFAboveThreshold::processCurLine(const casa::Vector &mask) throw(casa::AipsError) { try { if (is_detected_before) { if (cur_line.second-cur_line.first>=min_nchan) { // it was a detection. We need to change the list Bool add_new_line=False; if (lines.size()) { for (int i=lines.back().second;imean, -1 if less, 0 if equal. // This array is updated each time the findLines method is called and // is used to search the line wings const casa::Vector& LFAboveThreshold::getSigns() const throw() { return signs; } // find spectral lines and add them into list void LFAboveThreshold::findLines(const casa::Vector &spectrum, const casa::Vector &mask, const std::pair &edge, int max_box_nchan) throw(casa::AipsError) { const int minboxnchan=4; try { if (running_box!=NULL) delete running_box; running_box=new RunningBox(spectrum,mask,edge,max_box_nchan); // determine the off-line variance first // an assumption made: lines occupy a small part of the spectrum std::vector variances(edge.second-edge.first); DebugAssert(variances.size(),AipsError); for (;running_box->haveMore();running_box->next()) variances[running_box->getChannel()-edge.first]= running_box->getLinVariance(); // in the future we probably should do a proper Chi^2 estimation // now a simple 80% of smaller values will be used. // it may degrade the performance of the algorithm for weak lines // due to a bias of the Chi^2 distribution. stable_sort(variances.begin(),variances.end()); Float offline_variance=0; uInt offline_cnt=uInt(0.8*variances.size()); if (!offline_cnt) offline_cnt=variances.size(); // no much else left, // although it is very inaccurate for (uInt n=0;n(spectrum.nelements(),0); //ofstream os("dbg.dat"); for (running_box->rewind();running_box->haveMore(); running_box->next()) { const int ch=running_box->getChannel(); if (running_box->getNumberOfBoxPoints()>=minboxnchan) processChannel(mask[ch] && (fabs(running_box->aboveMean()) >= threshold*offline_variance), mask); else processCurLine(mask); // just finish what was accumulated before signs[ch]=getAboveMeanSign(); // os<aboveMean())<<" "<< // threshold*offline_variance<aboveMean(); if (buf>0) signs[ch]=1; else if (buf<0) signs[ch]=-1; else if (buf==0) signs[ch]=0; //os<getLinMean()<<" "<< // threshold*offline_variance< &in_line1) : line1(in_line1) {} // return true if line2 intersects with line1 with at least one // common channel, and false otherwise // line2 - range of the second line: start channel and stop+1 bool LFLineListOperations::IntersectsWith::operator()(const std::pair &line2) const throw() { if (line2.secondline1.second) return false; // line2 is at upper channels return true; // line2 has an intersection or is adjacent to line1 } // /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // // LFLineListOperations::BuildUnion - An auxiliary object function to build a union // of several lines to account for a possibility of merging the nearby lines // // set an initial line (can be a first line in the sequence) LFLineListOperations::BuildUnion::BuildUnion(const std::pair &line1) : temp_line(line1) {} // update temp_line with a union of temp_line and new_line // provided there is no gap between the lines void LFLineListOperations::BuildUnion::operator()(const std::pair &new_line) throw() { if (new_line.firsttemp_line.second) temp_line.second=new_line.second; } // return the result (temp_line) const std::pair& LFLineListOperations::BuildUnion::result() const throw() { return temp_line; } // /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // // LFLineListOperations::LaterThan - An auxiliary object function to test whether a // specified line is at lower spectral channels (to preserve the order in // the line list) // // setup the line to compare with LFLineListOperations::LaterThan::LaterThan(const std::pair &in_line1) : line1(in_line1) {} // return true if line2 should be placed later than line1 // in the ordered list (so, it is at greater channel numbers) bool LFLineListOperations::LaterThan::operator()(const std::pair &line2) const throw() { if (line2.secondline1.second) return true; // line2 is at upper channels // line2 intersects with line1. We should have no such situation in // practice return line2.first>line1.first; } // /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // // STLineFinder - a class for automated spectral line search // // STLineFinder::STLineFinder() throw() : edge(0,0) { setOptions(); } // set the parameters controlling algorithm // in_threshold a single channel threshold default is sqrt(3), which // means together with 3 minimum channels at least 3 sigma // detection criterion // For bad baseline shape, in_threshold may need to be // increased // in_min_nchan minimum number of channels above the threshold to report // a detection, default is 3 // in_avg_limit perform the averaging of no more than in_avg_limit // adjacent channels to search for broad lines // Default is 8, but for a bad baseline shape this // parameter should be decreased (may be even down to a // minimum of 1 to disable this option) to avoid // confusing of baseline undulations with a real line. // Setting a very large value doesn't usually provide // valid detections. // in_box_size the box size for running mean calculation. Default is // 1./5. of the whole spectrum size void STLineFinder::setOptions(const casa::Float &in_threshold, const casa::Int &in_min_nchan, const casa::Int &in_avg_limit, const casa::Float &in_box_size) throw() { threshold=in_threshold; min_nchan=in_min_nchan; avg_limit=in_avg_limit; box_size=in_box_size; } STLineFinder::~STLineFinder() throw(AipsError) {} // set scan to work with (in_scan parameter) void STLineFinder::setScan(const ScantableWrapper &in_scan) throw(AipsError) { scan=in_scan.getCP(); AlwaysAssert(!scan.null(),AipsError); } // search for spectral lines. Number of lines found is returned // in_edge and in_mask control channel rejection for a given row // if in_edge has zero length, all channels chosen by mask will be used // if in_edge has one element only, it represents the number of // channels to drop from both sides of the spectrum // in_edge is introduced for convinience, although all functionality // can be achieved using a spectrum mask only int STLineFinder::findLines(const std::vector &in_mask, const std::vector &in_edge, const casa::uInt &whichRow) throw(casa::AipsError) { //const int minboxnchan=4; if (scan.null()) throw AipsError("STLineFinder::findLines - a scan should be set first," " use set_scan"); uInt nchan = scan->nchan(scan->getIF(whichRow)); // set up mask and edge rejection // no mask given... if (in_mask.size() == 0) { mask = Vector(nchan,True); } else { // use provided mask mask=Vector(in_mask); } if (mask.nelements()!=nchan) throw AipsError("STLineFinder::findLines - in_scan and in_mask have different" "number of spectral channels."); // number of elements in in_edge if (in_edge.size()>2) throw AipsError("STLineFinder::findLines - the length of the in_edge parameter" "should not exceed 2"); if (!in_edge.size()) { // all spectra, no rejection edge.first=0; edge.second=nchan; } else { edge.first=in_edge[0]; if (edge.first<0) throw AipsError("STLineFinder::findLines - the in_edge parameter has a negative" "number of channels to drop"); if (edge.first>=int(nchan)) throw AipsError("STLineFinder::findLines - all channels are rejected by the in_edge parameter"); if (in_edge.size()==2) { edge.second=in_edge[1]; if (edge.second<0) throw AipsError("STLineFinder::findLines - the in_edge parameter has a negative" "number of channels to drop"); edge.second=nchan-edge.second; } else edge.second=nchan-edge.first; if (edge.second<0 || (edge.first>=edge.second)) throw AipsError("STLineFinder::findLines - all channels are rejected by the in_edge parameter"); } // int max_box_nchan=int(nchan*box_size); // number of channels in running // box if (max_box_nchan<2) throw AipsError("STLineFinder::findLines - box_size is too small"); spectrum.resize(); spectrum = Vector(scan->getSpectrum(whichRow)); lines.resize(0); // search from the scratch last_row_used=whichRow; Vector temp_mask(mask); Bool first_pass=True; Int avg_factor=1; // this number of adjacent channels is averaged together // the total number of the channels is not altered // instead, min_nchan is also scaled // it helps to search for broad lines Vector signs; // a buffer for signs of the value - mean quantity // see LFAboveThreshold for details // We need only signs resulted from last iteration // because all previous values may be corrupted by the // presence of spectral lines while (true) { // a buffer for new lines found at this iteration std::list > new_lines; try { // line find algorithm LFAboveThreshold lfalg(new_lines,avg_factor*min_nchan, threshold); lfalg.findLines(spectrum,temp_mask,edge,max_box_nchan); signs.resize(lfalg.getSigns().nelements()); signs=lfalg.getSigns(); first_pass=False; if (!new_lines.size()) throw AipsError("spurious"); // nothing new - use the same // code as for a real exception } catch(const AipsError &ae) { if (first_pass) throw; // nothing new - proceed to the next step of averaging, if any // (to search for broad lines) if (avg_factor>=avg_limit) break; // averaging up to avg_limit // adjacent channels, // stop after that avg_factor*=2; // twice as more averaging subtractBaseline(temp_mask,9); averageAdjacentChannels(temp_mask,avg_factor); continue; } keepStrongestOnly(temp_mask,new_lines,max_box_nchan); // update the list (lines) merging intervals, if necessary addNewSearchResult(new_lines,lines); // get a new mask temp_mask=getMask(); } // an additional search for wings because in the presence of very strong // lines temporary mean used at each iteration will be higher than // the true mean if (lines.size()) LFLineListOperations::searchForWings(lines,signs,mask,edge); return int(lines.size()); } // auxiliary function to fit and subtract a polynomial from the current // spectrum. It uses the Fitter class. This action is required before // reducing the spectral resolution if the baseline shape is bad void STLineFinder::subtractBaseline(const casa::Vector &temp_mask, const casa::Int &order) throw(casa::AipsError) { AlwaysAssert(spectrum.nelements(),AipsError); // use the fact that temp_mask excludes channels rejected at the edge Fitter sdf; std::vector absc(spectrum.nelements()); for (unsigned int i=0;i spec; spectrum.tovector(spec); std::vector std_mask; temp_mask.tovector(std_mask); sdf.setData(absc,spec,std_mask); sdf.setExpression("poly",order); if (!sdf.fit()) return; // fit failed, use old spectrum spectrum=casa::Vector(sdf.getResidual()); } // auxiliary function to average adjacent channels and update the mask // if at least one channel involved in summation is masked, all // output channels will be masked. This function works with the // spectrum and edge fields of this class, but updates the mask // array specified, rather than the field of this class // boxsize - a number of adjacent channels to average void STLineFinder::averageAdjacentChannels(casa::Vector &mask2update, const casa::Int &boxsize) throw(casa::AipsError) { DebugAssert(mask2update.nelements()==spectrum.nelements(), AipsError); DebugAssert(boxsize!=0,AipsError); for (int n=edge.first;n STLineFinder::getMask(bool invert) const throw(casa::AipsError) { try { if (scan.null()) throw AipsError("STLineFinder::getMask - a scan should be set first," " use set_scan followed by find_lines"); DebugAssert(mask.nelements()==scan->getChannels(last_row_used), AipsError); /* if (!lines.size()) throw AipsError("STLineFinder::getMask - one have to search for " "lines first, use find_lines"); */ std::vector res_mask(mask.nelements()); // iterator through lines std::list >::const_iterator cli=lines.begin(); for (int ch=0;ch=edge.second) res_mask[ch]=false; else if (!mask[ch]) res_mask[ch]=false; else { res_mask[ch]=!invert; // no line by default if (cli==lines.end()) continue; if (ch>=cli->first && chsecond) res_mask[ch]=invert; // this is a line if (ch>=cli->second) ++cli; // next line in the list } return res_mask; } catch (const AipsError &ae) { throw; } catch (const exception &ex) { throw AipsError(String("STLineFinder::getMask - STL error: ")+ex.what()); } } // get range for all lines found. The same units as used in the scan // will be returned (e.g. velocity instead of channels). std::vector STLineFinder::getLineRanges() const throw(casa::AipsError) { // convert to required abscissa units std::vector vel=scan->getAbcissa(last_row_used); std::vector ranges=getLineRangesInChannels(); std::vector res(ranges.size()); std::vector::const_iterator cri=ranges.begin(); std::vector::iterator outi=res.begin(); for (;cri!=ranges.end() && outi!=res.end();++cri,++outi) if (uInt(*cri)>=vel.size()) throw AipsError("STLineFinder::getLineRanges - getAbcissa provided less channels than reqired"); else *outi=vel[*cri]; return res; } // The same as getLineRanges, but channels are always used to specify // the range std::vector STLineFinder::getLineRangesInChannels() const throw(casa::AipsError) { try { if (scan.null()) throw AipsError("STLineFinder::getLineRangesInChannels - a scan should be set first," " use set_scan followed by find_lines"); DebugAssert(mask.nelements()==scan->getChannels(last_row_used), AipsError); if (!lines.size()) throw AipsError("STLineFinder::getLineRangesInChannels - one have to search for " "lines first, use find_lines"); std::vector res(2*lines.size()); // iterator through lines & result std::list >::const_iterator cli=lines.begin(); std::vector::iterator ri=res.begin(); for (;cli!=lines.end() && ri!=res.end();++cli,++ri) { *ri=cli->first; if (++ri!=res.end()) *ri=cli->second-1; } return res; } catch (const AipsError &ae) { throw; } catch (const exception &ex) { throw AipsError(String("STLineFinder::getLineRanges - STL error: ")+ex.what()); } } // an auxiliary function to remove all lines from the list, except the // strongest one (by absolute value). If the lines removed are real, // they will be find again at the next iteration. This approach // increases the number of iterations required, but is able to remove // spurious detections likely to occur near strong lines. // Later a better criterion may be implemented, e.g. // taking into consideration the brightness of different lines. Now // use the simplest solution // temp_mask - mask to work with (may be different from original mask as // the lines previously found may be masked) // lines2update - a list of lines to work with // nothing will be done if it is empty // max_box_nchan - channels in the running box for baseline filtering void STLineFinder::keepStrongestOnly(const casa::Vector &temp_mask, std::list > &lines2update, int max_box_nchan) throw (casa::AipsError) { try { if (!lines2update.size()) return; // ignore an empty list // current line std::list >::iterator li=lines2update.begin(); // strongest line std::list >::iterator strongli=lines2update.begin(); // the flux (absolute value) of the strongest line Float peak_flux=-1; // negative value - a flag showing uninitialized // value // the algorithm below relies on the list being ordered Float tmp_flux=-1; // a temporary peak for (RunningBox running_box(spectrum,temp_mask,edge,max_box_nchan); running_box.haveMore(); running_box.next()) { if (li==lines2update.end()) break; // no more lines const int ch=running_box.getChannel(); if (ch>=li->first && chsecond) if (temp_mask[ch] && tmp_fluxsecond-1) { if (peak_flux > res; res.splice(res.end(),lines2update,strongli); lines2update.clear(); lines2update.splice(lines2update.end(),res); } catch (const AipsError &ae) { throw; } catch (const exception &ex) { throw AipsError(String("STLineFinder::keepStrongestOnly - STL error: ")+ex.what()); } } // /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // // LFLineListOperations - a class incapsulating operations with line lists // The LF prefix stands for Line Finder // // concatenate two lists preserving the order. If two lines appear to // be adjacent, they are joined into the new one void LFLineListOperations::addNewSearchResult(const std::list > &newlines, std::list > &lines_list) throw(AipsError) { try { for (std::list >::const_iterator cli=newlines.begin(); cli!=newlines.end();++cli) { // the first item, which has a non-void intersection or touches // the new line std::list >::iterator pos_beg=find_if(lines_list.begin(), lines_list.end(), IntersectsWith(*cli)); // the last such item std::list >::iterator pos_end=find_if(pos_beg, lines_list.end(), not1(IntersectsWith(*cli))); // extract all lines which intersect or touch a new one into // a temporary buffer. This may invalidate the iterators // line_buffer may be empty, if no lines intersects with a new // one. std::list > lines_buffer; lines_buffer.splice(lines_buffer.end(),lines_list, pos_beg, pos_end); // build a union of all intersecting lines pair union_line=for_each(lines_buffer.begin(), lines_buffer.end(),BuildUnion(*cli)).result(); // search for a right place for the new line (union_line) and add std::list >::iterator pos2insert=find_if(lines_list.begin(), lines_list.end(), LaterThan(union_line)); lines_list.insert(pos2insert,union_line); } } catch (const AipsError &ae) { throw; } catch (const exception &ex) { throw AipsError(String("LFLineListOperations::addNewSearchResult - STL error: ")+ex.what()); } } // extend all line ranges to the point where a value stored in the // specified vector changes (e.g. value-mean change its sign) // This operation is necessary to include line wings, which are below // the detection threshold. If lines becomes adjacent, they are // merged together. Any masked channel stops the extension void LFLineListOperations::searchForWings(std::list > &newlines, const casa::Vector &signs, const casa::Vector &mask, const std::pair &edge) throw(casa::AipsError) { try { for (std::list >::iterator li=newlines.begin(); li!=newlines.end();++li) { // update the left hand side for (int n=li->first-1;n>=edge.first;--n) { if (!mask[n]) break; if (signs[n]==signs[li->first] && signs[li->first]) li->first=n; else break; } // update the right hand side for (int n=li->second;nsecond-1] && signs[li->second-1]) li->second=n; else break; } } // need to search for possible mergers. std::list > result_buffer; addNewSearchResult(newlines,result_buffer); newlines.clear(); newlines.splice(newlines.end(),result_buffer); } catch (const AipsError &ae) { throw; } catch (const exception &ex) { throw AipsError(String("LFLineListOperations::extendLines - STL error: ")+ex.what()); } } // ///////////////////////////////////////////////////////////////////////////////