Changeset 4029 in Sophya for trunk/SophyaExt/FitsIOServer/fboloread.cc
- Timestamp:
- Oct 22, 2011, 1:15:49 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fboloread.cc
r3128 r4029 15 15 \verbatim 16 16 -- Exemple: 17 FitsBoloRead fbr (blen,bsens);17 FitsBoloRead fbr; 18 18 fbr.SetDebug(2); 19 19 … … 58 58 /*! 59 59 Constructor. Define the structure of the bolometer columns connector. 60 \param blen : read buffer length 61 \param bsens : buffer reading direction 62 \verbatim 63 - bsens>0 read forward 64 bsens<0 read backward 65 bsens==0 read centered 66 \endverbatim 67 */ 68 FitsBoloRead::FitsBoloRead(long blen,long bsens) 69 : NBline(0), DbgLevel(0), BuffLen(blen), BuffSens(bsens) 60 */ 61 FitsBoloRead::FitsBoloRead(void) 62 : NBline(0), DbgLevel(0) 70 63 { 71 64 for(int i=0;i<_NCOL_BOLO_MIN_;i++) { … … 144 137 145 138 mFABT[col] = 146 new FitsABTColRead(mFName[col].c_str(),mLabel[col].c_str() 147 ,mHDU[col],BuffLen,BuffSens,(int)DbgLevel); 139 new FitsABTColRead(mFName[col].c_str(),mLabel[col].c_str(),mHDU[col],(int)DbgLevel); 148 140 149 141 // Set the number of rows as the smallest of for connected columns
Note:
See TracChangeset
for help on using the changeset viewer.