Ignore:
Timestamp:
09/25/09 11:47:11 (15 years ago)
Author:
Malte Marquarding
Message:

Update from livedata CVS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/external/atnf/PKSIO/MBrecord.cc

    r1452 r1635  
    22//# MBrecord.cc: Class to store an MBFITS single-dish data record.
    33//#---------------------------------------------------------------------------
    4 //# Copyright (C) 2000-2008
     4//# Copyright (C) 2000-2009
    55//# Mark Calabretta, ATNF
    66//#
     
    2727//#                        AUSTRALIA
    2828//#
    29 //# $Id: MBrecord.cc,v 19.12 2008-11-17 06:52:35 cal103 Exp $
     29//# $Id: MBrecord.cc,v 19.13 2009-03-24 06:15:33 cal103 Exp $
    3030//#---------------------------------------------------------------------------
    3131//# The MBrecord class stores an MBFITS single-dish data record.
     
    9393    xcalfctr = new float[nif][2];
    9494    baseLin  = new float[nif][2][2];
    95     baseSub  = new float[nif][2][9];
     95    baseSub  = new float[nif][2][24];
    9696    spectra  = new float*[nif];
    9797    flagged  = new unsigned char*[nif];
     
    260260      baseLin[iIF][ipol][1] = other.baseLin[iIF][ipol][1];
    261261
    262       for (int j = 0; j < 9; j++) {
     262      for (int j = 0; j < 24; j++) {
    263263        baseSub[iIF][ipol][j] = other.baseSub[iIF][ipol][j];
    264264      }
     
    380380    baseLin[0][ipol][1] = other.baseLin[iIF][ipol][1];
    381381
    382     for (int j = 0; j < 9; j++) {
     382    for (int j = 0; j < 24; j++) {
    383383      baseSub[0][ipol][j] = other.baseSub[iIF][ipol][j];
    384384    }
Note: See TracChangeset for help on using the changeset viewer.