Changeset 3993 in Sophya for trunk/AddOn/TAcq/branap.cc
- Timestamp:
- May 13, 2011, 12:37:14 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AddOn/TAcq/branap.cc
r3992 r3993 22 22 istep_=1; 23 23 rdsamefc_=true; // read paquets with same frame counter 24 freqmin_= freqmax_=0;24 freqmin_=0; freqmax_=-1; 25 25 nbinfreq_=1; 26 26 paqsize_=16424; … … 40 40 vmin_=0.; vmax_=9e99; 41 41 nbands_=0; bandfirst_ = bandlast_ = 0; 42 fgdt _ = false;42 fgdtpaq_ = fgdtms_ = false; 43 43 44 44 fgfreqfilter_=false; //JEC 1/2/11 … … 133 133 ka+=2; 134 134 } 135 else if (strcmp(arg[ka],"-filldt")==0) { 136 fgdt_=true; 135 else if (strcmp(arg[ka],"-fdtpaq")==0) { 136 fgdtpaq_=true; 137 ka++; 138 } 139 else if (strcmp(arg[ka],"-fdtms")==0) { 140 fgdtms_=true; 137 141 ka++; 138 142 } … … 205 209 << " [-freqfilter medhw] [-gain filename] [-varcut min,max] [-nband nband,first,last] \n" 206 210 << " [-freqfilter] [-gain filename] [-varcut min,max] [-nband nband,first,last] \n" 207 << " [-tmproc hh:mm:ss,nseconds] [-f illdt] [-tspwin wsz,extsz,nfiles] \n"211 << " [-tmproc hh:mm:ss,nseconds] [-fdtpaq] [-fdtms] [-tspwin wsz,extsz,nfiles] \n" 208 212 << " -in Imin,Imax,Istep InPath FiberList [InPath2 FiberList2 InPath3 FiberList3 ...] \n" << endl; 209 213 if (fgshort) { … … 232 236 << " -fftdata : Force FFT data mode (firmware fft) \n" 233 237 << " -varcut min,max : min-max cut on variance \n" 234 << " -nband nband,first,last: numbers of freq. bands and first and last bands used for cuts 238 << " -nband nband,first,last: numbers of freq. bands and first and last bands used for cuts\n" 235 239 << " -tmproc hh:mm:ss,nseconds : processing time window definition \n" 236 << " -filldt : force data table filling \n" 240 << " -fdtpaq : force per paquet data table filling (specmfib) \n" 241 << " -fdtms : force time averaged/filtered data table filling; use -freq for defining bands (specmfib)\n" 237 242 << " -freqfilter medhw: force median filtering on the frequencies \n" 238 243 << " with half window width medhw (use - for default=" << medhalfwidth_ << ") \n" … … 283 288 cout << " Action=" << action_ << " NMean=" << nmean_ << " NBloc=" << nbloc_ << endl; 284 289 cout << " FreqMin= " << freqmin_ << " FreqMax= " << freqmax_ << " NBinFreq= " << nbinfreq_ << endl; 285 cout<< ((fgdt_)?" Fill DadaTable ":" NO DataTable") << endl; 290 if (fgdtpaq_) cout<< " Fill Per Paquet DadaTable "; 291 if (fgdtms_) cout<< " Fill Time Averaged/Filtered binned power DataTable "; 292 if (!fgdtpaq_&&!fgdtms_) cout << " NO DataTable " << endl; 293 else cout << endl; 286 294 cout << " GainFileName=" << gainfile_ << " Variance: Min= " << vmin_ << " Max= " << vmax_ 287 295 << " Bands: N=" << nbands_ << " First=" << bandfirst_ << " Last=" << bandlast_
Note:
See TracChangeset
for help on using the changeset viewer.