Ignore:
Timestamp:
01/13/10 17:20:31 (14 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: Yes CAS-1799

Ready to Release: Yes

Interface Changes: Yes

What Interface Changed: srcType is added to PKSrecord class

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): casa/atnf

Description: Describe your changes here...

Calibration scheme is updated to use SRCTYPE as an identifier of scan intent
(ON, OFF, ...). Currently, updated calibration scheme is implemented only for
ALMA data. Calibration of other data is still use SRCNAME as the identifier.

casa/atnf must be updated.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/alma/src/STFiller.cpp

    r1671 r1674  
    311311#endif
    312312  PKSrecord pksrec;
     313  pksrec.srcType=-1;
    313314  int n = 0;
    314315  bool isGBTFITS = false ;
     
    376377    //*srcnCol = pksrec.srcName;//.before(rx2);
    377378    *srctCol = match;
     379    if ( pksrec.srcType != -1 ) {
     380      *srctCol = pksrec.srcType ;
     381    }
    378382    RecordFieldPtr<uInt> beamCol(rec, "BEAMNO");
    379383    *beamCol = pksrec.beamNo-beamOffset_-1;
Note: See TracChangeset for help on using the changeset viewer.