Changeset 4012 in Sophya for trunk/AddOn/TAcq/branap.cc
- Timestamp:
- Aug 2, 2011, 7:25:02 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AddOn/TAcq/branap.cc
r4004 r4012 17 17 outpath_="./"; 18 18 fgfitsout_=false; 19 nmean_=nmean;20 nbloc_=1;21 19 imin_=imax_=0; 22 20 istep_=1; … … 31 29 prtlevel_=0; 32 30 prtmodulo_=50000; 31 32 nmean_=nmean; 33 fgtimeinterval_=false; 34 timeinterval_=1.; 35 nbloc_=1; 36 33 37 nbcalgrp_=1; 34 38 nthreads_=1; … … 77 81 nmean_=atoi(arg[ka+1]); 78 82 ka+=2; 83 } 84 else if (strcmp(arg[ka],"-tmint")==0) { 85 timeinterval_=atoi(arg[ka+1]); 86 fgtimeinterval_=true; ka+=2; 79 87 } 80 88 else if (strcmp(arg[ka],"-nbloc")==0) { … … 224 232 << " -fitsout : Force FITS format for output files \n" 225 233 << " -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" 226 235 << " -nbloc NBloc: Number of MemMgr blocs in output file\n" 227 236 << " -zones NZones,NbPaqinZone : Number of Zones and number of paquets in one zone (RAcqMemZoneMgr) \n" … … 287 296 cout << " OutPath= " << outpath_ << (fgfitsout_?" force FITS output":" PPF output") << endl; 288 297 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; 289 300 cout << " FreqMin= " << freqmin_ << " FreqMax= " << freqmax_ << " NBinFreq= " << nbinfreq_ << endl; 290 301 if (fgdtpaq_) cout<< " Fill Per Paquet DadaTable ";
Note:
See TracChangeset
for help on using the changeset viewer.