Changeset 3886 in Sophya for trunk/AddOn/TAcq/branap.cc
- Timestamp:
- Sep 24, 2010, 12:31:21 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AddOn/TAcq/branap.cc
r3883 r3886 31 31 nbcalgrp_=1; 32 32 nthreads_=1; 33 34 vmin_=0.; vmax_=9e99; 33 35 } 34 36 … … 86 88 rdsamefc_=false; 87 89 ka++; 90 } 91 else if (strcmp(arg[ka],"-varcut")==0) { 92 sscanf(arg[ka+1],"%lg,%lg",&vmin_,&vmax_); 93 ka+=2; 88 94 } 89 95 else if (strcmp(arg[ka],"-in")==0) { … … 126 132 cout << " Usage: prgname [-act ACT] [-out OutPath] [-nmean NMean] [-zones NZones,nPaqinZone] \n" 127 133 << " [-nbloc NBloc] [-freq NumFreqMin,NumFreqMax,NBinFreq] \n" 128 << " [-prt lev,modulo] [-nvcal n] [-nthr n] [-nosfc] \n"134 << " [-prt lev,modulo] [-nvcal n] [-nthr n] [-nosfc] [-varcut min,max] \n" 129 135 << " -in Imin,Imax,Istep InPath FiberList [InPath2 FiberList2 InPath3 FiberList3 ...] \n" << endl; 130 136 if (fgshort) { … … 145 151 << " -nthr n : number of threads for parallel execution in BRVisibilityCalculator (default=1) \n" 146 152 << " -nosfc : Don't force reading with SAME FrameCounter \n" 153 << " -varcut min,max : min-max cut on variance \n" 147 154 << " -in : input files/directory definition : \n" 148 155 << " Imin,Imax,Istep: fits files signalII.fits Imin<=II<=Imax Istep=increment \n" … … 172 179 cout << " Action=" << action_ << " NMean=" << nmean_ << " NBloc=" << nbloc_ << endl; 173 180 cout << " FreqMin= " << freqmin_ << " FreqMax= " << freqmax_ << " NBinFreq= " << nbinfreq_ << endl; 181 cout << " VarianceMin= " << vmin_ << " VarianceMax= " << vmax_ << endl; 174 182 cout << " PaqSize=" << paqsize_ << " - NZones=" << nzones_ << " NPaqZone=" << npaqinzone_ 175 183 << " PrtLevel=" << prtlevel_ << " PrtCntModulo=" << prtmodulo_ << endl;
Note:
See TracChangeset
for help on using the changeset viewer.