#include "postProcessing.h" #include "postProcessingFuncs.h" #include "angleConversionConstant.h" #ifdef VERBOSE #include "usersFunctions.h" #elif EXTPP #include "usersFunctions.h" #endif #include //#define VERBOSE static void* startProcessData(void *n){ postProcessing *myDet=(postProcessing*)n; myDet->processData(1); pthread_exit(NULL); }; static void* startProcessDataNoDelete(void *n){ postProcessing *myDet=(postProcessing*)n; myDet->processData(0); pthread_exit(NULL); }; int postProcessing::kbhit(){ struct timeval tv; fd_set fds; tv.tv_sec = 0; tv.tv_usec = 0; FD_ZERO(&fds); FD_SET(STDIN_FILENO, &fds); //STDIN_FILENO is 0 select(STDIN_FILENO+1, &fds, NULL, NULL, &tv); return FD_ISSET(STDIN_FILENO, &fds); } postProcessing::postProcessing(): expTime(NULL), ang(NULL), val(NULL), err(NULL), numberOfChannels(0), badChannelMask(NULL){ pthread_mutex_t mp1 = PTHREAD_MUTEX_INITIALIZER; mp=mp1; pthread_mutex_init(&mp, NULL); mg=mp1; pthread_mutex_init(&mg, NULL); ms=mp1; pthread_mutex_init(&ms, NULL); //cout << "reg callback "<< endl; dataReady = 0; pCallbackArg = 0; //cout << "done "<< endl; rawDataReady = 0; pRawDataArg = 0; //#ifdef VERBOSE // registerDataCallback(&defaultDataReadyFunc, NULL); //#endif #ifdef EXTPP registerRawDataCallback(&defaultRawDataReadyFunc, NULL); #endif ppFun=new postProcessingFuncs(); } postProcessing::~postProcessing(){ delete ppFun; }; void postProcessing::processFrame(int *myData, int delflag, int jctb) { string fname; //double *fdata=NULL; #ifdef VERBOSE cout << "start processing"<< endl; #endif incrementProgress(); #ifdef VERBOSE cout << "prog incremented"<< endl; #endif /** decode data */ // if (getDetectorsType()==MYTHEN) { fdata=decodeData(myData, fdata); #ifdef VERBOSE cout << "decode"<< endl; #endif // } else // fdata=NULL; if (rawDataReady) { #ifdef VERBOSE cout << "raw data ready..." << endl; #endif rawDataReady(fdata,numberOfChannels, pRawDataArg); #ifdef VERBOSE cout << "done" << endl; cout << "NO FILE WRITING AND/OR DATA PROCESSING DONE BY SLS DETECTOR SOFTWARE!!!" << endl; #endif } else { pthread_mutex_lock(&mp); fname=createFileName(); pthread_mutex_unlock(&mp); #ifdef VERBOSE cout << "fname is " << fname << endl; #endif //Checking for write flag if((*correctionMask)&(1<=0){ if (getDetectorsType()==MYTHEN) incrementFrameIndex(1); else if((currentFrameIndex%getFramesPerFile())==0) incrementFrameIndex(getFramesPerFile()); } if (fdata) delete [] fdata; fdata=NULL; // if (jctb==0) { delete [] myData; myData=NULL; #ifdef VERBOSE cout << "Pop data queue " << *fileIndex << endl; #endif popDataQueue(); //remove the data from the queue #ifdef VERBOSE cout << "Data queue popped" << endl; #endif #ifdef VERBOSE cout << "process frame returning " << endl; #endif // } } void postProcessing::doProcessing(double *lfdata, int delflag, string fname) { #ifdef VERBOSE cout << "??????????????????????????????????????????? do processing - data size is " << arraySize << endl; #endif int np; #ifdef VERBOSE cout << "arrays allocated " << endl; #endif int npos=getNumberOfPositions(); string ext=".dat"; #ifdef VERBOSE cout << "npos is "<< npos << endl; #endif double t=0; if (expTime) t=(*expTime)*1E-9; else cout << "no pointer to exptime" << endl; #ifdef VERBOSE cout << "exptime is "<< t << endl; #endif if (GetCurrentPositionIndex()<=1 || npos<2) { #ifdef VERBOSE cout << "init dataset" << endl; #endif if (*correctionMask&(1<< ANGULAR_CONVERSION)) ang=new double[arraySize]; else ang=NULL; val=new double[arraySize]; err=new double[arraySize]; initDataset(0); } #ifdef VERBOSE cout << "add frame" << endl; #endif /**ot them start processing prog incremented decode fname is //run_f0_0 ??????????????????????????????????????????? do processing - data size is 30720 arrays allocated npos is 0 exptime is 10.00 init dataset add frame data queue size lock data queue size unlock **/ addFrame(lfdata,currentPosition, currentI0, t, fname, 0); // cout << "++++++++++++++++++++" << GetCurrentPositionIndex() << " " << npos << " " << positionFinished() << " " << dataQueueSize() << endl; if ((GetCurrentPositionIndex()>=npos && dataQueueSize()) || npos<2) { //&& while(positionFinished()==0 && npos>1) { ; } #ifdef VERBOSE cout << "finalize dataset" << endl; #endif finalizeDataset(ang, val, err, np); //if (npos<2) { IncrementPositionIndex(); pthread_mutex_lock(&mp); fname=createFileName(); pthread_mutex_unlock(&mp); //} if((*correctionMask)&(1<0) { int *badChansList=new int[nbad]; #ifdef VERBOSE cout << "get badch array " << nbad << endl; #endif getBadChannelCorrection(badChansList); #ifdef VERBOSE cout << "done " << nbad << endl; #endif if (badChannelMask) delete [] badChannelMask; #ifdef VERBOSE cout << " nchans " << getTotalNumberOfChannels() << endl; #endif badChannelMask=new int[getTotalNumberOfChannels()]; #ifdef VERBOSE cout << " pointer to bad channel mask is " << badChannelMask << endl; #endif for (int ichan=0; ichan=0 ) { if (badChannelMask[badChansList[ichan]]==0) { badChannelMask[badChansList[ichan]]=1; // cout << "bad: " << ichan << " " << badChansList[ichan] << endl; } else nbad--; } } delete [] badChansList; } else { if (badChannelMask) { #ifdef VERBOSE cout << "deleting bad channel mask beacuse number of bad channels is 0" << endl; #endif delete [] badChannelMask; badChannelMask=NULL; } } } else { #ifdef VERBOSE cout << "bad channel correction is disabled " << nbad << endl; #endif if (badChannelMask) { #ifdef VERBOSE cout << "deleting bad channel mask beacuse no bad channel correction is selected" << endl; #endif delete [] badChannelMask; badChannelMask=NULL; } } #ifdef VERBOSE cout << "number of bad channels is " << nbad << endl; #endif return nbad; } void* postProcessing::processData(int delflag) { pthread_mutex_lock(&mg); if(setReceiverOnline()==OFFLINE_FLAG){ pthread_mutex_unlock(&mg); #ifdef VERBOSE std::cout<< " ??????????????????????????????????????????? processing data - threaded mode " << *threadedProcessing << endl; #endif queuesize=dataQueueSize(); int *myData; char *p; int dum=1; int nf=1, ii, nch; int jctb=0; // if (getDetectorsType()==JUNGFRAUCTB) { // nch=getTotalNumberOfChannels(); // nf= getDataBytes()/(nch*2); // cout << "WILL PROCESS " << nf << "SAMPLES AND " << nch <<"CHANNELS PER FRAME!" << endl; // jctb=1; // }// else // // cout << "NOOT A JCTB" << endl; fdata=NULL; while(dum | *threadedProcessing) { // ???????????????????????? /* IF THERE ARE DATA PROCESS THEM*/ // cout << "loop" << endl; while((queuesize=dataQueueSize())>0) { /** Pop data queue */ //#ifdef VERBOSE cout << "data found"<< endl<r_conversion; angOff[im]=p->offset; angCenter[im]=p->center; #ifdef VERBOSE cout << im << " " << angCenter[im] << " " << angRad[im] << " " << angOff[im] << endl; #endif } sx=getAngularConversionParameter(SAMPLE_X); sy=getAngularConversionParameter(SAMPLE_Y); } #ifdef VERBOSE cout << "init dataset" << endl; #endif // cout << "pp bad channel mask " << badChannelMask << endl; fillBadChannelMask(); // cout << "pp bad channel mask " << badChannelMask << endl; //cout << "EEEEEEEEEEEEEEEEEEEE init dataset " << endl; ppFun->initDataset(&nmod,chPM,mM,badChannelMask, ffcoeff, fferr, &tdead, &angdir, angRad, angOff, angCenter, &to, &bs, &sx, &sy); #ifdef VERBOSE cout << "done" << endl; #endif if (*correctionMask&(1<< ANGULAR_CONVERSION)) { arraySize=getNumberOfAngularBins(); if (arraySize<=0) arraySize=totch; } else { arraySize=totch; } numberOfChannels=totch; queuesize=dataQueueSize(); // resetFinalDataQueue(); resetDataQueue(); } else { // cout << "EEEEEEEEEEEEEEEEEEEE init dataset XXXX " << endl; ppFun->initDataset(); } } void postProcessing::addFrame(double *data, double pos, double i0, double t, string fname, double var) { // cout << "EEEEEEEEEEEEEEEEEEEE add frame " << pos << " " << i0 << endl; if (*correctionMask&(1<< I0_NORMALIZATION)) ppFun->addFrame(data, &pos, &i0, &t, fname.c_str(), &var); else ppFun->addFrame(data, &pos,NULL, &t, fname.c_str(), &var); } void postProcessing::finalizeDataset(double *a, double *v, double *e, int &np) { // cout << "EEEEEEEEEEEEEEEEEEEE finalize dataset " << endl; ppFun->finalizeDataset(a, v, e, &np); } void postProcessing::startThread(int delflag) { /////////////////////////////////// Initialize dataset //resetDataQueue(); setTotalProgress(); initDataset(1); /////////////////////////////////// Start thread //////////////////////////////////////////////////////// #ifdef VERBOSE cout << "start thread stuff" << endl; #endif pthread_attr_t tattr; int ret; sched_param param, mparam; int policy= SCHED_OTHER; // set the priority; others are unchanged //newprio = 30; mparam.sched_priority =1; param.sched_priority =1; /* Initialize and set thread detached attribute */ pthread_attr_init(&tattr); pthread_attr_setdetachstate(&tattr, PTHREAD_CREATE_JOINABLE); // param.sched_priority = 5; // scheduling parameters of main thread ret = pthread_setschedparam(pthread_self(), policy, &mparam); //#ifdef VERBOSE // printf("current priority is %d\n",param.sched_priority); //#endif if (delflag) ret = pthread_create(&dataProcessingThread, &tattr,startProcessData, (void*)this); else ret = pthread_create(&dataProcessingThread, &tattr,startProcessDataNoDelete, (void*)this); pthread_attr_destroy(&tattr); // scheduling parameters of target thread ret = pthread_setschedparam(dataProcessingThread, policy, ¶m); }