Ignore:
Timestamp:
11/27/08 12:47:15 (16 years ago)
Author:
TakTsutsumi
Message:

New Development: No

JIRA Issue: No

Ready to Release: Yes

Interface Changes: Yes

What Interface Changed: many

Test Programs: sd.scantable(), sd.scantable.save()

Put in Release Notes: N/A

Description: copied from current casapy code tree


File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/alma/external/atnf/PKSIO/PKSFITSreader.cc

    r1393 r1453  
    337337        Double          &bandwidth,
    338338        Double          &freqInc,
    339         Double          &restFreq,
     339        Vector<Double>  &restFreq,
    340340        Vector<Float>   &tcal,
    341341        String          &tcalTime,
     
    403403  bandwidth = chanWidth * nChan;
    404404  freqInc   = cMBrec.fqDelt[0];
    405   restFreq  = cMBrec.restFreq;
     405  //restFreq  = cMBrec.restFreq;
     406  restFreq.resize(1);
     407  restFreq(0)  = cMBrec.restFreq;
    406408
    407409  tcal.resize(nPol);
Note: See TracChangeset for help on using the changeset viewer.