FFTFileGrid::FFTFileGrid(FFTFileGrid * fftGrid, bool expTrans) : FFTGrid() { float value; int i,j,k; genFileName(); cubetype_ = fftGrid->cubetype_; theta_ = fftGrid->theta_; nx_ = fftGrid->nx_; ny_ = fftGrid->ny_; nz_ = fftGrid->nz_; nxp_ = fftGrid->nxp_; nyp_ = fftGrid->nyp_; nzp_ = fftGrid->nzp_; cnxp_ = nxp_/2+1; rnxp_ = 2*(cnxp_); csize_ = cnxp_*nyp_*nzp_; rsize_ = rnxp_*nyp_*nzp_; counterForGet_ = 0; counterForSet_ = 0; istransformed_ = fftGrid->istransformed_; fNameIn_ = ""; accMode_ = NONE; setAccessMode(WRITE); fftGrid->setAccessMode(READ); if(istransformed_ == false){ createRealGrid(); for(k=0;k<nzp_;k++) { for(j=0;j<nyp_;j++) { for(i=0;i<rnxp_;i++) { value=fftGrid->getNextReal(); if (expTrans) setNextReal(exp(value)); else setNextReal(value); } } } } else{ createComplexGrid(); for(int k=0;k<nzp_;k++) { for(int j=0;j<nyp_;j++) { for(int i=0;i<cnxp_;i++) { fftw_complex value = fftGrid->getNextComplex(); setNextComplex(value); } } } } endAccess(); fftGrid->endAccess(); }
/* open a strm file * It is OK to call this function when the stream is already open. In that * case, it returns immediately with RS_RET_OK */ static rsRetVal strmOpenFile(strm_t *pThis) { DEFiRet; ASSERT(pThis != NULL); if(pThis->fd != -1) ABORT_FINALIZE(RS_RET_OK); if(pThis->pszFName == NULL) ABORT_FINALIZE(RS_RET_FILE_PREFIX_MISSING); if(pThis->sType == STREAMTYPE_FILE_CIRCULAR) { CHKiRet(genFileName(&pThis->pszCurrFName, pThis->pszDir, pThis->lenDir, pThis->pszFName, pThis->lenFName, pThis->iCurrFNum, pThis->iFileNumDigits)); } else { if(pThis->pszDir == NULL) { if((pThis->pszCurrFName = (uchar*) strdup((char*) pThis->pszFName)) == NULL) ABORT_FINALIZE(RS_RET_OUT_OF_MEMORY); } else { CHKiRet(genFileName(&pThis->pszCurrFName, pThis->pszDir, pThis->lenDir, pThis->pszFName, pThis->lenFName, -1, 0)); } } CHKiRet(doPhysOpen(pThis)); pThis->iCurrOffs = 0; if(pThis->tOperationsMode == STREAMMODE_WRITE_APPEND) { /* we need to obtain the current offset */ off_t offset; CHKiRet(getFileSize(pThis->pszCurrFName, &offset)); pThis->iCurrOffs = offset; } DBGOPRINT((obj_t*) pThis, "opened file '%s' for %s as %d\n", pThis->pszCurrFName, (pThis->tOperationsMode == STREAMMODE_READ) ? "READ" : "WRITE", pThis->fd); finalize_it: RETiRet; }
TmpPdfFile::TmpPdfFile(const JobList &jobs, QObject *parent): QObject(parent), mMerger(0), mValid(false), mRender(0) { mOrigFileSize = 0; mOrigXrefPos = 0; mFirstFreeNum = 0; mFileName = genFileName(); foreach (Job job, jobs) mInputFiles << job.inputFile(); }
void PrintPosterHandler::write(const std::string &filePath) const { const std::string fileName = (filePath.empty() ? "" : filePath + "/") + genFileName(); osgDB::writeImageFile(*m_poster, fileName); }
FFTFileGrid::FFTFileGrid(int nx, int ny, int nz, int nxp, int nyp, int nzp) : FFTGrid(nx, ny, nz, nxp, nyp, nzp) { genFileName(); accMode_=NONE; }