Changeset 1110


Ignore:
Timestamp:
08/04/06 10:34:23 (18 years ago)
Author:
mar637
Message:

added detection of telesope for paddle scan rejection as this was rejecting all GBT scans

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STFiller.cpp

    r1081 r1110  
    225225    if ( status != 0 ) break;
    226226    Regex filterrx(".*[SL|PA]$");
    227     if ( obsType.matches(filterrx)) {
    228       //cerr << "ignoring paddle scan" << endl;
     227    Regex obsrx("^AT.+");
     228    if ( header_->antennaname.matches(obsrx) && obsType.matches(filterrx)) {
     229        //cerr << "ignoring paddle scan" << endl;
    229230        continue;
    230231    }
Note: See TracChangeset for help on using the changeset viewer.