- Timestamp:
- 12/19/11 19:40:37 (13 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asapgrid.py
r2373 r2375 42 42 self.outfile = self.gridder._save( outfile ) 43 43 44 def plot( self, plotchan=-1, plotpol=-1 ):44 def plot( self, plotchan=-1, plotpol=-1, plotobs=False, plotgrid=False ): 45 45 import time 46 46 t0=time.time() … … 49 49 rcParams['scantable.storage'] = 'disk' 50 50 plotter = _SDGridPlotter( self.infile, self.outfile, self.ifno ) 51 plotter.plot( chan=plotchan, pol=plotpol )51 plotter.plot( chan=plotchan, pol=plotpol, plotobs=plotobs, plotgrid=plotgrid ) 52 52 # back to original setup 53 53 rcParams['scantable.storage'] = storg … … 123 123 #print 'cellx,celly=',self.cellx,self.celly 124 124 125 def plot( self, chan=-1, pol=-1 ):125 def plot( self, chan=-1, pol=-1, plotobs=False, plotgrid=False ): 126 126 if pol < 0: 127 127 opt = 'averaged over pol' … … 137 137 pl.clf() 138 138 # plot grid position 139 x = numpy.arange(self.blc[0],self.trc[0]+0.5*self.cellx,self.cellx,dtype=float) 140 #print 'len(x)=',len(x) 141 #print 'x=',x 142 ybase = numpy.ones(self.nx,dtype=float)*self.blc[1] 143 #print 'len(ybase)=',len(ybase) 144 incr = self.celly 145 for iy in xrange(self.ny): 146 y = ybase + iy * incr 147 #print y 148 pl.plot(x,y,',',color='blue') 139 if plotgrid: 140 x = numpy.arange(self.blc[0],self.trc[0]+0.5*self.cellx,self.cellx,dtype=float) 141 #print 'len(x)=',len(x) 142 #print 'x=',x 143 ybase = numpy.ones(self.nx,dtype=float)*self.blc[1] 144 #print 'len(ybase)=',len(ybase) 145 incr = self.celly 146 for iy in xrange(self.ny): 147 y = ybase + iy * incr 148 #print y 149 pl.plot(x,y,',',color='blue') 149 150 # plot observed position 150 irow = 0 151 while ( irow < self.nrow ): 152 chunk = self.getPointingChunk( irow ) 153 #print chunk 154 pl.plot(chunk[0],chunk[1],',',color='green') 155 irow += chunk.shape[1] 156 #print irow 151 if plotobs: 152 irow = 0 153 while ( irow < self.nrow ): 154 chunk = self.getPointingChunk( irow ) 155 #print chunk 156 pl.plot(chunk[0],chunk[1],',',color='green') 157 irow += chunk.shape[1] 158 #print irow 157 159 # show image 158 160 extent=[self.blc[0]-0.5*self.cellx, -
trunk/src/STGrid.cpp
r2374 r2375 7 7 #include <casa/Arrays/Cube.h> 8 8 #include <casa/Arrays/ArrayMath.h> 9 #include <casa/Arrays/Array PartMath.h>9 #include <casa/Arrays/ArrayIter.h> 10 10 #include <casa/Quanta/Quantum.h> 11 11 #include <casa/Quanta/QuantumHolder.h> … … 155 155 156 156 // retrieve data 157 Cube<Complex> spectra ;158 Matrix<Double> direction ;159 Cube<uChar> flagtra ;160 Matrix<uInt> rflag ;161 Matrix<Float> weight ;157 Array<Complex> spectra ; 158 Array<Double> direction ; 159 Array<Int> flagtra ; 160 Array<Int> rflag ; 161 Array<Float> weight ; 162 162 double t0, t1 ; 163 163 t0 = mathutil::gettimeofday_sec() ; … … 170 170 //os << "weight = " << weight << LogIO::POST ; 171 171 172 // flagtra: uChar -> Int173 // rflag: uInt -> Int174 Cube<Int> flagI ;175 Matrix<Int> rflagI ;176 t0 = mathutil::gettimeofday_sec() ;177 toInt( &flagtra, &flagI ) ;178 toInt( &rflag, &rflagI ) ;179 t1 = mathutil::gettimeofday_sec() ;180 os << "toInt: elapsed time is " << t1-t0 << " sec." << LogIO::POST ;181 182 172 // grid parameter 183 173 os << LogIO::DEBUGGING ; … … 200 190 201 191 // world -> pixel 202 Matrix<Double> xypos( direction.shape(), 0.0 ) ;192 Array<Double> xypos( direction.shape(), 0.0 ) ; 203 193 t0 = mathutil::gettimeofday_sec() ; 204 194 toPixel( direction, xypos ) ; 205 195 t1 = mathutil::gettimeofday_sec() ; 196 //os << "xypos=" << xypos << LogIO::POST ; 206 197 os << "toPixel: elapsed time is " << t1-t0 << " sec." << LogIO::POST ; 207 198 … … 211 202 const Complex *data_p = spectra.getStorage( deleteData ) ; 212 203 const Float *wgt_p = weight.getStorage( deleteWgt ) ; 213 const Int *flag_p = flagI.getStorage( deleteFlag ) ; 214 const Int *rflag_p = rflagI.getStorage( deleteFlagR ) ; 204 //const Int *flag_p = flagI.getStorage( deleteFlag ) ; 205 //const Int *rflag_p = rflagI.getStorage( deleteFlagR ) ; 206 const Int *flag_p = flagtra.getStorage( deleteFlag ) ; 207 const Int *rflag_p = rflag.getStorage( deleteFlagR ) ; 215 208 Float *conv_p = convFunc.getStorage( deleteConv ) ; 216 209 // Extend grid plane with convSupport_ … … 278 271 spectra.freeStorage( data_p, deleteData ) ; 279 272 weight.freeStorage( wgt_p, deleteWgt ) ; 280 flag I.freeStorage( flag_p, deleteFlag ) ;281 rflag I.freeStorage( rflag_p, deleteFlagR ) ;273 flagtra.freeStorage( flag_p, deleteFlag ) ; 274 rflag.freeStorage( rflag_p, deleteFlagR ) ; 282 275 convFunc.putStorage( conv_p, deleteConv ) ; 283 276 delete polMap ; … … 336 329 String ¢er ) 337 330 { 331 LogIO os( LogOrigin("STGrid","setupGrid",WHERE) ) ; 338 332 //cout << "nx=" << nx << ", ny=" << ny << endl ; 339 333 … … 372 366 373 367 368 nx_ = nx ; 369 ny_ = ny ; 370 if ( nx < 0 && ny > 0 ) { 371 nx_ = ny ; 372 ny_ = ny ; 373 } 374 if ( ny < 0 && nx > 0 ) { 375 nx_ = nx ; 376 ny_ = nx ; 377 } 378 374 379 //Double wx = xmax - xmin ; 375 380 //Double wy = ymax - ymin ; … … 379 384 wx *= 1.10 ; 380 385 wy *= 1.10 ; 386 381 387 Quantum<Double> qcellx ; 382 388 Quantum<Double> qcelly ; 383 nx_ = nx ;384 ny_ = ny ;385 if ( nx < 0 && ny > 0 ) {386 nx_ = ny ;387 ny_ = ny ;388 }389 if ( ny < 0 && nx > 0 ) {390 nx_ = nx ;391 ny_ = nx ;392 }393 389 //cout << "nx_ = " << nx_ << ", ny_ = " << ny_ << endl ; 394 390 if ( cellx.size() != 0 && celly.size() != 0 ) { … … 397 393 } 398 394 else if ( celly.size() != 0 ) { 399 cout << "Using celly to x-axis..." << endl;395 os << "Using celly to x-axis..." << LogIO::POST ; 400 396 readQuantity( qcelly, celly ) ; 401 397 qcellx = qcelly ; 402 398 } 403 399 else if ( cellx.size() != 0 ) { 404 cout << "Using cellx to y-axis..." << endl;400 os << "Using cellx to y-axis..." << LogIO::POST ; 405 401 readQuantity( qcellx, cellx ) ; 406 402 qcelly = qcellx ; … … 408 404 else { 409 405 if ( nx_ < 0 ) { 410 cout << "No user preference in grid setting. Using default..." << endl;406 os << "No user preference in grid setting. Using default..." << LogIO::POST ; 411 407 readQuantity( qcellx, "1.0arcmin" ) ; 412 408 qcelly = qcellx ; 413 409 } 414 410 else { 411 if ( wx == 0.0 ) { 412 os << "Using default spatial extent (10arcmin) in x" << LogIO::POST ; 413 wx = 0.00290888 ; 414 } 415 if ( wy == 0.0 ) { 416 os << "Using default spatial extent (10arcmin) in y" << LogIO::POST ; 417 wy = 0.00290888 ; 418 } 415 419 qcellx = Quantum<Double>( wx/nx_, "rad" ) ; 416 420 qcelly = Quantum<Double>( wy/ny_, "rad" ) ; … … 420 424 celly_ = qcelly.getValue( "rad" ) ; 421 425 if ( nx_ < 0 ) { 426 if ( wx == 0.0 ) { 427 os << "Using default spatial extent (10arcmin) in x" << LogIO::POST ; 428 wx = 0.00290888 ; 429 } 430 if ( wy == 0.0 ) { 431 os << "Using default spatial extent (10arcmin) in y" << LogIO::POST ; 432 wy = 0.00290888 ; 433 } 422 434 nx_ = Int( ceil( wx/cellx_ ) ) ; 423 435 ny_ = Int( ceil( wy/celly_ ) ) ; … … 455 467 } 456 468 457 void STGrid::getData( Cube<Complex> &spectra,458 Matrix<Double> &direction,459 Cube<uChar> &flagtra,460 Matrix<uInt> &rflag,461 Matrix<Float> &weight )462 { 463 //LogIO os( LogOrigin("STGrid","getData",WHERE) ) ;469 void STGrid::getData( Array<Complex> &spectra, 470 Array<Double> &direction, 471 Array<uChar> &flagtra, 472 Array<uInt> &rflag, 473 Array<Float> &weight ) 474 { 475 LogIO os( LogOrigin("STGrid","getData",WHERE) ) ; 464 476 // os << "start" << LogIO::POST ; 465 477 Table tab ; 466 478 selectData( tab ) ; 467 updatePolList( tab ) ;479 setupArray( tab ) ; 468 480 // os << "npol_ = " << npol_ << LogIO::POST ; 469 481 // os << "nchan_ = " << nchan_ << LogIO::POST ; 470 482 // os << "nrow_ = " << nrow_ << LogIO::POST ; 471 spectra.resize( npol_, nchan_, nrow_ ) ; 472 flagtra.resize( npol_, nchan_, nrow_ ) ; 473 rflag.resize( npol_, nrow_ ) ; 474 Cube<Float> tsys( npol_, nchan_, nrow_ ) ; 475 Matrix<Double> tint( npol_, nrow_ ) ; 483 IPosition cshape( 3, npol_, nchan_, nrow_ ) ; 484 IPosition mshape( 2, npol_, nrow_ ) ; 485 spectra.resize( cshape ) ; 486 flagtra.resize( cshape ) ; 487 rflag.resize( mshape ) ; 488 direction.resize( IPosition(2,2,nrow_) ) ; 489 Array<Float> tsys( cshape ) ; 490 Array<Double> tint( mshape ) ; 491 492 ArrayIterator<uChar> fli( flagtra, IPosition(2,1,2) ) ; 493 ArrayIterator<uInt> fri( rflag, IPosition(1,1) ) ; 494 ArrayIterator<Float> tsi( tsys, IPosition(2,1,2) ) ; 495 ArrayIterator<Double> tii( tint, IPosition(1,1) ) ; 496 476 497 // boolean for pointer access 477 Bool bsp, b fl, bfr, bts, bti, bsps ;498 Bool bsp, bsps ; 478 499 // pointer to the data 479 500 Complex *sp_p = spectra.getStorage( bsp ) ; 480 uChar *fl_p = flagtra.getStorage( bfl ) ;481 uInt *fr_p = rflag.getStorage( bfr ) ;482 Float *ts_p = tsys.getStorage( bts ) ;483 Double *ti_p = tint.getStorage( bti ) ;484 501 // working pointer 485 502 Complex *wsp_p = sp_p ; 486 uChar *wfl_p = fl_p ;487 uInt *wfr_p = fr_p ;488 Float *wts_p = ts_p ;489 Double *wti_p = ti_p ;490 503 uInt len = nchan_ * nrow_ ; 491 IPosition mshape ( 2, nchan_, nrow_ ) ;504 IPosition mshape2( 2, nchan_, nrow_ ) ; 492 505 IPosition vshape( 1, nrow_ ) ; 493 506 Vector<Float> spSlice( nchan_ ) ; … … 513 526 } 514 527 } 515 Matrix<uChar> flSlice( mshape, wfl_p, SHARE) ;516 Vector<uInt> frSlice ( vshape, wfr_p, SHARE) ;528 Array<uChar> flSlice = fli.array() ; 529 Vector<uInt> frSlice = fri.array() ; 517 530 flagtraCol.getColumn( flSlice ) ; 518 531 rflagCol.getColumn( frSlice ) ; … … 520 533 directionCol.getColumn( direction ) ; 521 534 Vector<Float> tmpF = tsysCol( 0 ) ; 522 Vector<Double> tmpD( vshape, wti_p, SHARE ) ; 523 Matrix<Float> tsSlice( mshape, wts_p, SHARE ) ; 535 Array<Float> tsSlice = tsi.array() ; 524 536 if ( tmpF.nelements() == (uInt)nchan_ ) { 525 537 tsysCol.getColumn( tsSlice ) ; … … 528 540 tsSlice = tmpF( 0 ) ; 529 541 } 542 Vector<Double> tmpD = tii.array() ; 530 543 tintCol.getColumn( tmpD ) ; 531 544 532 545 wsp_p += len ; 533 wfl_p += len ; 534 wfr_p += nrow_ ; 535 wts_p += len ; 536 wti_p += nrow_ ; 546 547 fli.next() ; 548 fri.next() ; 549 tsi.next() ; 550 tii.next() ; 537 551 } 538 552 spSlice.freeStorage( sps_p, bsps ) ; 539 553 spectra.putStorage( sp_p, bsp ) ; 540 flagtra.putStorage( fl_p, bfl ) ; 541 rflag.putStorage( fr_p, bfr ) ; 542 tsys.putStorage( ts_p, bts ) ; 543 tint.putStorage( ti_p, bti ) ; 554 555 // os << "spectra=" << spectra << LogIO::POST ; 556 // os << "flagtra=" << flagtra << LogIO::POST ; 557 // os << "rflag=" << rflag << LogIO::POST ; 558 // os << "direction=" << direction << LogIO::POST ; 544 559 545 560 getWeight( weight, tsys, tint ) ; 546 561 } 547 562 548 void STGrid::updatePolList( Table &tab ) 563 void STGrid::getData( Array<Complex> &spectra, 564 Array<Double> &direction, 565 Array<Int> &flagtra, 566 Array<Int> &rflag, 567 Array<Float> &weight ) 568 { 569 LogIO os( LogOrigin("STGrid","getData",WHERE) ) ; 570 double t0, t1 ; 571 572 Array<uChar> flagUC ; 573 Array<uInt> rflagUI ; 574 getData( spectra, direction, flagUC, rflagUI, weight ) ; 575 576 t0 = mathutil::gettimeofday_sec() ; 577 toInt( flagUC, flagtra ) ; 578 toInt( rflagUI, rflag ) ; 579 t1 = mathutil::gettimeofday_sec() ; 580 os << "toInt: elapsed time is " << t1-t0 << " sec." << LogIO::POST ; 581 } 582 583 void STGrid::setupArray( Table &tab ) 549 584 { 550 585 ROScalarColumn<uInt> polnoCol( tab, "POLNO" ) ; … … 578 613 npol_ = pollist_.size() ; 579 614 if ( npol_ == 0 ) { 580 LogIO os( LogOrigin("STGrid"," updatePolList",WHERE) ) ;615 LogIO os( LogOrigin("STGrid","setupArray",WHERE) ) ; 581 616 os << LogIO::SEVERE << "Empty pollist" << LogIO::EXCEPTION ; 582 617 } … … 584 619 ROArrayColumn<uChar> tmpCol( tab, "FLAGTRA" ) ; 585 620 nchan_ = tmpCol( 0 ).nelements() ; 586 // LogIO os( LogOrigin("STGrid"," updatePolList",WHERE) ) ;621 // LogIO os( LogOrigin("STGrid","setupArray",WHERE) ) ; 587 622 // os << "npol_ = " << npol_ << "(" << pollist_ << ")" << endl 588 623 // << "nchan_ = " << nchan_ << endl … … 590 625 } 591 626 592 void STGrid::getWeight( Matrix<Float> &w,593 Cube<Float> &tsys,594 Matrix<Double> &tint )627 void STGrid::getWeight( Array<Float> &w, 628 Array<Float> &tsys, 629 Array<Double> &tint ) 595 630 { 596 631 LogIO os( LogOrigin("STGrid","getWeight",WHERE) ) ; … … 598 633 t0 = mathutil::gettimeofday_sec() ; 599 634 // resize 600 w.resize( nchan_, nrow_ ) ; 635 IPosition refShape = tsys.shape() ; 636 Int nchan = refShape[1] ; 637 Int nrow = refShape[2] ; 638 w.resize( IPosition(2,nchan,nrow) ) ; 601 639 602 640 // set weight … … 612 650 const Double *ti_p = tint.getStorage( b1 ) ; 613 651 const Double *w1_p = ti_p ; 614 for ( Int irow = 0 ; irow < nrow _; irow++ ) {652 for ( Int irow = 0 ; irow < nrow ; irow++ ) { 615 653 Float val = (Float)(polMean( w1_p )) ; 616 for ( Int ichan = 0 ; ichan < nchan _; ichan++ ) {654 for ( Int ichan = 0 ; ichan < nchan ; ichan++ ) { 617 655 *w0_p = val ; 618 656 w0_p++ ; … … 629 667 const Float *ts_p = tsys.getStorage( b1 ) ; 630 668 const Float *w1_p = ts_p ; 631 for ( Int irow = 0 ; irow < nrow _; irow++ ) {632 for ( Int ichan = 0 ; ichan < nchan _; ichan++ ) {669 for ( Int irow = 0 ; irow < nrow ; irow++ ) { 670 for ( Int ichan = 0 ; ichan < nchan ; ichan++ ) { 633 671 Float val = polMean( w1_p ) ; 634 672 *w0_p = 1.0 / ( val * val ) ; … … 648 686 const Float *ts_p = tsys.getStorage( b2 ) ; 649 687 const Float *w2_p = ts_p ; 650 for ( Int irow = 0 ; irow < nrow _; irow++ ) {688 for ( Int irow = 0 ; irow < nrow ; irow++ ) { 651 689 Float interval = (Float)(polMean( w1_p )) ; 652 for ( Int ichan = 0 ; ichan < nchan _; ichan++ ) {690 for ( Int ichan = 0 ; ichan < nchan ; ichan++ ) { 653 691 Float temp = polMean( w2_p ) ; 654 692 *w0_p = interval / ( temp * temp ) ; … … 696 734 } 697 735 698 void STGrid::toInt( Array<uChar> *u, Array<Int> *v )699 { 700 uInt len = u ->nelements() ;736 void STGrid::toInt( Array<uChar> &u, Array<Int> &v ) 737 { 738 uInt len = u.nelements() ; 701 739 Int *int_p = new Int[len] ; 702 740 Bool deleteIt ; 703 const uChar *data_p = u ->getStorage( deleteIt ) ;741 const uChar *data_p = u.getStorage( deleteIt ) ; 704 742 Int *i_p = int_p ; 705 743 const uChar *u_p = data_p ; … … 709 747 u_p++ ; 710 748 } 711 u ->freeStorage( data_p, deleteIt ) ;712 v ->takeStorage( u->shape(), int_p, TAKE_OVER ) ;713 } 714 715 void STGrid::toInt( Array<uInt> *u, Array<Int> *v )716 { 717 uInt len = u ->nelements() ;749 u.freeStorage( data_p, deleteIt ) ; 750 v.takeStorage( u.shape(), int_p, TAKE_OVER ) ; 751 } 752 753 void STGrid::toInt( Array<uInt> &u, Array<Int> &v ) 754 { 755 uInt len = u.nelements() ; 718 756 Int *int_p = new Int[len] ; 719 757 Bool deleteIt ; 720 const uInt *data_p = u ->getStorage( deleteIt ) ;758 const uInt *data_p = u.getStorage( deleteIt ) ; 721 759 Int *i_p = int_p ; 722 760 const uInt *u_p = data_p ; … … 726 764 u_p++ ; 727 765 } 728 u ->freeStorage( data_p, deleteIt ) ;729 v ->takeStorage( u->shape(), int_p, TAKE_OVER ) ;730 } 731 732 void STGrid::toPixel( Matrix<Double> &world, Matrix<Double> &pixel )766 u.freeStorage( data_p, deleteIt ) ; 767 v.takeStorage( u.shape(), int_p, TAKE_OVER ) ; 768 } 769 770 void STGrid::toPixel( Array<Double> &world, Array<Double> &pixel ) 733 771 { 734 772 // gridding will be done on (nx_+2*convSupport_) x (ny_+2*convSupport_) 735 773 // grid plane to avoid unexpected behavior on grid edge 736 Vector<Double> pixc( 2 ) ;737 pixc (0)= Double( nx_-1 ) * 0.5 ;738 pixc (1)= Double( ny_-1 ) * 0.5 ;739 // pixc (0)= Double( nx_+2*convSupport_-1 ) * 0.5 ;740 // pixc (1)= Double( ny_+2*convSupport_-1 ) * 0.5 ;774 Block<Double> pixc( 2 ) ; 775 pixc[0] = Double( nx_-1 ) * 0.5 ; 776 pixc[1] = Double( ny_-1 ) * 0.5 ; 777 // pixc[0] = Double( nx_+2*convSupport_-1 ) * 0.5 ; 778 // pixc[1] = Double( ny_+2*convSupport_-1 ) * 0.5 ; 741 779 uInt nrow = world.shape()[1] ; 742 Vector<Double> cell( 2 ) ; 743 cell(0) = cellx_ ; 744 cell(1) = celly_ ; 745 for ( uInt irow = 0 ; irow < nrow ; irow++ ) { 746 for ( uInt i = 0 ; i < 2 ; i++ ) { 747 pixel( i, irow ) = pixc(i) + ( world(i, irow) - center_(i) ) / cell(i) ; 748 } 749 } 780 Bool bw, bp ; 781 const Double *w_p = world.getStorage( bw ) ; 782 Double *p_p = pixel.getStorage( bp ) ; 783 const Double *ww_p = w_p ; 784 Double *wp_p = p_p ; 785 for ( uInt i = 0 ; i < nrow ; i++ ) { 786 *wp_p = pixc[0] + ( *ww_p - center_[0] ) / cellx_ ; 787 wp_p++ ; 788 ww_p++ ; 789 *wp_p = pixc[1] + ( *ww_p - center_[1] ) / celly_ ; 790 wp_p++ ; 791 ww_p++ ; 792 } 793 world.freeStorage( w_p, bw ) ; 794 pixel.putStorage( p_p, bp ) ; 750 795 // String gridfile = "grid."+convType_+"."+String::toString(convSupport_)+".dat" ; 751 796 // ofstream ofs( gridfile.c_str(), ios::out ) ; -
trunk/src/STGrid.h
r2374 r2375 86 86 Array<Float> &gwgt ) ; 87 87 88 void getData( Cube<Complex> &spectra, 89 Matrix<Double> &direction, 90 Cube<uChar> &flagtra, 91 Matrix<uInt> &rflag, 92 Matrix<Float> &weight ) ; 88 void getData( Array<Complex> &spectra, 89 Array<Double> &direction, 90 Array<uChar> &flagtra, 91 Array<uInt> &rflag, 92 Array<Float> &weight ) ; 93 void getData( Array<Complex> &spectra, 94 Array<Double> &direction, 95 Array<Int> &flagtra, 96 Array<Int> &rflag, 97 Array<Float> &weight ) ; 93 98 94 void getWeight( Matrix<Float> &w,95 Cube<Float> &tsys,96 Matrix<Double> &tint ) ;99 void getWeight( Array<Float> &w, 100 Array<Float> &tsys, 101 Array<Double> &tint ) ; 97 102 98 void toInt( Array<uChar> *u, Array<Int> *v ) ;99 void toInt( Array<uInt> *u, Array<Int> *v ) ;103 void toInt( Array<uChar> &u, Array<Int> &v ) ; 104 void toInt( Array<uInt> &u, Array<Int> &v ) ; 100 105 101 void toPixel( Matrix<Double> &world, Matrix<Double> &pixel ) ;106 void toPixel( Array<Double> &world, Array<Double> &pixel ) ; 102 107 103 108 void boxFunc( Vector<Float> &convFunc, Int &convSize ) ; … … 111 116 Double polMean( const Double *p ) ; 112 117 113 void updatePolList( Table &tab ) ;118 void setupArray( Table &tab ) ; 114 119 115 120 void prepareTable( Table &tab, String &name ) ;
Note:
See TracChangeset
for help on using the changeset viewer.