Changeset 4012 in Sophya for trunk/AddOn/TAcq/branap.cc


Ignore:
Timestamp:
Aug 2, 2011, 7:25:02 PM (14 years ago)
Author:
ansari
Message:

Codage du mode de calcul de visibilites par intervalle de temps (BRVisibiliyCalculator) et propagation des modifs (ajouts de parametres) ds mfacq.cc et vismfib.cc, Reza 02/08/2011

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/AddOn/TAcq/branap.cc

    r4004 r4012  
    1717  outpath_="./";
    1818  fgfitsout_=false;
    19   nmean_=nmean;
    20   nbloc_=1;
    2119  imin_=imax_=0;
    2220  istep_=1;
     
    3129  prtlevel_=0;
    3230  prtmodulo_=50000;
     31
     32  nmean_=nmean;
     33  fgtimeinterval_=false;
     34  timeinterval_=1.;
     35  nbloc_=1;
     36
    3337  nbcalgrp_=1;
    3438  nthreads_=1;
     
    7781      nmean_=atoi(arg[ka+1]);
    7882      ka+=2;
     83    }
     84    else if (strcmp(arg[ka],"-tmint")==0) {
     85      timeinterval_=atoi(arg[ka+1]);
     86      fgtimeinterval_=true;  ka+=2;
    7987    }
    8088    else if (strcmp(arg[ka],"-nbloc")==0) {
     
    224232       << " -fitsout : Force FITS format for output files  \n"
    225233       << " -nmean NMean: Number of packet used for spectra/visibility computation \n"
     234       << " -tmint dtime: Time interval definition (instead of nmean) for spectra/visibility computation \n"
    226235       << " -nbloc NBloc: Number of MemMgr blocs in output file\n"
    227236       << " -zones NZones,NbPaqinZone : Number of Zones and number of paquets in one zone (RAcqMemZoneMgr) \n"
     
    287296  cout << " OutPath= " << outpath_ << (fgfitsout_?" force FITS output":" PPF output") << endl;
    288297  cout << " Action=" << action_ << "  NMean=" << nmean_ << " NBloc=" << nbloc_ << endl;
     298  cout << ((fgtimeinterval_)?" Time Interval mode for visi/spectra ":" NPaq Interval mode")
     299       << " TimeInterval=" << timeinterval_ << " seconds " << endl;
    289300  cout << " FreqMin= " << freqmin_ << " FreqMax= " << freqmax_ << " NBinFreq= " << nbinfreq_ << endl;
    290301  if (fgdtpaq_) cout<<  " Fill Per Paquet DadaTable ";
Note: See TracChangeset for help on using the changeset viewer.