Changeset 846


Ignore:
Timestamp:
02/23/06 11:26:32 (18 years ago)
Author:
mar637
Message:

added ignor porperties

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src

    • Property svn:ignore set to
      *~
      *.o
  • trunk/src/STFiller.cpp

    r835 r846  
    6666                            int whichIF, int whichBeam )
    6767{
    68   if (table_.null()) table_ = new Scantable();
     68  if (table_.null())  {
     69    cout << "new scnatbale object" << endl;
     70    table_ = new Scantable();
     71  }
    6972  if (reader_)  { delete reader_; reader_ = 0; }
    7073  Bool haveBase, haveSpectra;
     
    184187  Vector<Int> end(nIF_, 0);
    185188  reader_->select(beamSel, IFsel, start, end, ref, True, haveXPol_);
    186   table_->putSDHeader(*header_);
     189  table_->setHeader(*header_);
    187190}
    188191
  • trunk/src/STFiller.h

    r805 r846  
    3333This class fills a Scantable from external data formats using the PKSReader class.
    3434
     35@brief    A filler object for data import into Scantable
    3536@author   Malte Marquarding
    3637@date     2006/01/16
     
    4041public:
    4142
     43  /**
     44   * Default constructor
     45   */
    4246  STFiller();
    4347
     48
     49  /**
     50   * Constructor taking an existing Scantable to fill
     51   * @param stbl
     52   */
    4453  STFiller(casa::CountedPtr< Scantable > stbl);
    4554
     
    5463                  int whichBeam=-1 );
    5564
     65  /**
     66   * Destructor
     67   */
    5668  ~STFiller();
    5769
     
    6678
    6779  /**
    68    * detatch from file
     80   * detach from file and clean up pointers
    6981   */
    7082  void close( );
     
    7385   * Read in "rows" from the source file attached with open()
    7486   * @return a status flag passed on by PKSreader
     87   *
     88   * @li @c 0: ok
     89   * @li >0: failed
    7590   */
    7691  int read( );
Note: See TracChangeset for help on using the changeset viewer.