mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-20 02:40:03 +02:00
327 lines
7.3 KiB
C++
327 lines
7.3 KiB
C++
//#include "ansi.h"
|
|
#include <iostream>
|
|
|
|
|
|
|
|
//#include "moench03T1ZmqData.h"
|
|
#ifdef NEWRECEIVER
|
|
#include "moench03T1ReceiverDataNew.h"
|
|
#endif
|
|
#ifdef CSAXS_FP
|
|
#include "moench03T1ReceiverData.h"
|
|
#endif
|
|
#ifdef OLDDATA
|
|
#include "moench03Ctb10GbT1Data.h"
|
|
#endif
|
|
|
|
// #include "interpolatingDetector.h"
|
|
//#include "etaInterpolationPosXY.h"
|
|
// #include "linearInterpolation.h"
|
|
// #include "noInterpolation.h"
|
|
#include "multiThreadedAnalogDetector.h"
|
|
#include "singlePhotonDetector.h"
|
|
//#include "interpolatingDetector.h"
|
|
|
|
#include <stdio.h>
|
|
#include <map>
|
|
#include <fstream>
|
|
#include <sys/stat.h>
|
|
|
|
#include <ctime>
|
|
using namespace std;
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
|
|
if (argc<4) {
|
|
cout << "Usage is " << argv[0] << "indir outdir fname [runmin] [runmax] [pedfile] [threshold] [nframes] [xmin xmax ymin ymax]" << endl;
|
|
cout << "threshold <0 means analog; threshold=0 means cluster finder; threshold>0 means photon counting" << endl;
|
|
cout << "nframes <0 means sum everything; nframes=0 means one file per run; nframes>0 means one file every nframes" << endl;
|
|
return 1;
|
|
}
|
|
|
|
int p=10000;
|
|
int fifosize=1000;
|
|
int nthreads=8;
|
|
int nsubpix=25;
|
|
int etabins=nsubpix*10;
|
|
double etamin=-1, etamax=2;
|
|
int csize=3;
|
|
int nx=400, ny=400;
|
|
int save=1;
|
|
int nsigma=5;
|
|
int nped=1000;
|
|
int ndark=100;
|
|
int ok;
|
|
int iprog=0;
|
|
|
|
|
|
|
|
#ifdef NEWRECEIVER
|
|
moench03T1ReceiverDataNew *decoder=new moench03T1ReceiverDataNew();
|
|
cout << "RECEIVER DATA WITH ONE HEADER!"<<endl;
|
|
#endif
|
|
|
|
#ifdef CSAXS_FP
|
|
moench03T1ReceiverData *decoder=new moench03T1ReceiverData();
|
|
cout << "RECEIVER DATA WITH ALL HEADERS!"<<endl;
|
|
#endif
|
|
|
|
#ifdef OLDDATA
|
|
moench03Ctb10GbT1Data *decoder=new moench03Ctb10GbT1Data();
|
|
cout << "OLD RECEIVER DATA!"<<endl;
|
|
#endif
|
|
|
|
singlePhotonDetector *filter=new singlePhotonDetector(decoder,csize, nsigma, 1, 0, nped, 200);
|
|
|
|
int size = 327680;////atoi(argv[3]);
|
|
|
|
int* image;
|
|
//int* image =new int[327680/sizeof(int)];
|
|
filter->newDataSet();
|
|
|
|
|
|
int ff, np;
|
|
int dsize=decoder->getDataSize();
|
|
//cout << " data size is " << dsize;
|
|
|
|
|
|
char data[dsize];
|
|
|
|
ifstream filebin;
|
|
char *indir=argv[1];
|
|
char *outdir=argv[2];
|
|
char *fformat=argv[3];
|
|
int runmin=0;
|
|
|
|
// cout << "argc is " << argc << endl;
|
|
if (argc>=5) {
|
|
runmin=atoi(argv[4]);
|
|
}
|
|
|
|
int runmax=runmin;
|
|
|
|
if (argc>=6) {
|
|
runmax=atoi(argv[5]);
|
|
}
|
|
|
|
char *pedfile=NULL;
|
|
if (argc>=7) {
|
|
pedfile=argv[6];
|
|
}
|
|
double thr=0;
|
|
double thr1=0;
|
|
|
|
if (argc>=8) {
|
|
thr=atoi(argv[7]);
|
|
}
|
|
|
|
|
|
int nframes=0;
|
|
|
|
if (argc>=9) {
|
|
nframes=atoi(argv[8]);
|
|
}
|
|
int xmin=0, xmax=400, ymin=0, ymax=400;
|
|
if (argc>=13) {
|
|
xmin=atoi(argv[9]);
|
|
xmax=atoi(argv[10]);
|
|
ymin=atoi(argv[11]);
|
|
ymax=atoi(argv[12]);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char ffname[10000];
|
|
char fname[10000];
|
|
char imgfname[10000];
|
|
char cfname[10000];
|
|
char fn[10000];
|
|
|
|
std::time_t end_time;
|
|
|
|
FILE *of=NULL;
|
|
cout << "input directory is " << indir << endl;
|
|
cout << "output directory is " << outdir << endl;
|
|
cout << "input file is " << fformat << endl;
|
|
cout << "runmin is " << runmin << endl;
|
|
cout << "runmax is " << runmax << endl;
|
|
if (pedfile)
|
|
cout << "pedestal file is " << pedfile << endl;
|
|
#ifndef ANALOG
|
|
if (thr>0) {
|
|
cout << "threshold is " << thr << endl;
|
|
filter->setThreshold(thr);
|
|
}
|
|
#endif
|
|
|
|
|
|
filter->setROI(xmin,xmax,ymin,ymax);
|
|
#ifdef SOLEIL
|
|
filter->setROI(150,210,170,230);
|
|
nframes=-1;
|
|
#endif
|
|
std::time(&end_time);
|
|
cout << std::ctime(&end_time) << endl;
|
|
|
|
char* buff;
|
|
multiThreadedAnalogDetector *mt=new multiThreadedAnalogDetector(filter,nthreads,fifosize);
|
|
#ifndef ANALOG
|
|
if (thr>=0) {
|
|
mt->setDetectorMode(ePhotonCounting);
|
|
cout << "Counting!" << endl;
|
|
} else
|
|
#endif
|
|
{
|
|
mt->setDetectorMode(eAnalog);
|
|
cout << "Analog!" << endl;
|
|
#ifdef ANALOG
|
|
thr1=thr;
|
|
#endif
|
|
}
|
|
|
|
mt->StartThreads();
|
|
mt->popFree(buff);
|
|
|
|
|
|
cout << "mt " << endl;
|
|
|
|
int ifr=0;
|
|
|
|
|
|
|
|
|
|
if (pedfile) {
|
|
cout << "PEDESTAL " ;
|
|
sprintf(fname,"%s.raw",pedfile);
|
|
cout << fname << endl ;
|
|
sprintf(imgfname,"%s/pedestals.tiff",outdir,fformat);
|
|
std::time(&end_time);
|
|
cout << "aaa" << std::ctime(&end_time) << endl;
|
|
|
|
|
|
mt->setFrameMode(ePedestal);
|
|
// sprintf(fn,fformat,irun);
|
|
filebin.open((const char *)(fname), ios::in | ios::binary);
|
|
// //open file
|
|
if (filebin.is_open()){
|
|
ff=-1;
|
|
while (decoder->readNextFrame(filebin, ff, np,buff)) {
|
|
mt->pushData(buff);
|
|
mt->nextThread();
|
|
mt->popFree(buff);
|
|
ifr++;
|
|
if (ifr%10000==0)
|
|
cout << ifr << " " << ff << " " << np << endl;
|
|
ff=-1;
|
|
}
|
|
filebin.close();
|
|
while (mt->isBusy()) {;}
|
|
mt->writePedestal(imgfname);
|
|
std::time(&end_time);
|
|
cout << std::ctime(&end_time) << endl;
|
|
|
|
} else
|
|
cout << "Could not open "<< fname << " for reading " << endl;
|
|
}
|
|
|
|
|
|
ifr=0;
|
|
int ifile=0;
|
|
|
|
for (int irun=runmin; irun<=runmax; irun++) {
|
|
cout << "DATA " ;
|
|
mt->setFrameMode(eFrame);
|
|
// sprintf(fn,fformat,irun);
|
|
sprintf(ffname,"%s/%s.raw",indir,fformat);
|
|
sprintf(fname,ffname,irun);
|
|
sprintf(ffname,"%s/%s.tiff",outdir,fformat);
|
|
sprintf(imgfname,ffname,irun);
|
|
sprintf(ffname,"%s/%s.clust",outdir,fformat);
|
|
sprintf(cfname,ffname,irun);
|
|
cout << fname << " " ;
|
|
cout << imgfname << endl;
|
|
std::time(&end_time);
|
|
cout << std::ctime(&end_time) << endl;
|
|
// cout << fname << " " << outfname << " " << imgfname << endl;
|
|
filebin.open((const char *)(fname), ios::in | ios::binary);
|
|
// //open file
|
|
ifile=0;
|
|
if (filebin.is_open()){
|
|
if (thr<=0) {
|
|
if (of==NULL) {
|
|
of=fopen(cfname,"w");
|
|
if (of) {
|
|
mt->setFilePointer(of);
|
|
cout << "file pointer set " << endl;
|
|
} else {
|
|
cout << "Could not open "<< cfname << " for writing " << endl;
|
|
mt->setFilePointer(NULL);
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
// //while read frame
|
|
ff=-1;
|
|
ifr=0;
|
|
while (decoder->readNextFrame(filebin, ff, np,buff)) {
|
|
// cout << "*"<<ifr++<<"*"<<ff<< endl;
|
|
// cout << ff << " " << np << endl;
|
|
// //push
|
|
mt->pushData(buff);
|
|
// // //pop
|
|
mt->nextThread();
|
|
// // // cout << " " << (void*)buff;
|
|
mt->popFree(buff);
|
|
ifr++;
|
|
if (ifr%1000==0) cout << ifr << " " << ff << endl;
|
|
if (nframes>0) {
|
|
if (ifr%nframes==0) {
|
|
//The name has an additional "_fXXXXX" at the end, where "XXXXX" is the initial frame number of the image (0,1000,2000...)
|
|
|
|
sprintf(ffname,"%s/%s_f%05d.tiff",outdir,fformat,ifile);
|
|
sprintf(imgfname,ffname,irun);
|
|
cout << "Writing tiff to " << imgfname << " " << thr1 << endl;
|
|
mt->writeImage(imgfname, thr1);
|
|
mt->clearImage();
|
|
ifile++;
|
|
}
|
|
}
|
|
|
|
ff=-1;
|
|
}
|
|
cout << "--" << endl;
|
|
filebin.close();
|
|
// //close file
|
|
// //join threads
|
|
while (mt->isBusy()) {;}
|
|
if (nframes>=0) {
|
|
if (nframes>0) {
|
|
sprintf(ffname,"%s/%s_f%05d.tiff",outdir,fformat,ifile);
|
|
sprintf(imgfname,ffname,irun);
|
|
}
|
|
sprintf(ffname,"%s/%s.tiff",outdir,fformat);
|
|
sprintf(imgfname,ffname,irun);
|
|
cout << "Writing tiff to " << imgfname << " " << thr1 <<endl;
|
|
mt->writeImage(imgfname, thr1);
|
|
mt->clearImage();
|
|
if (of) {
|
|
fclose(of);
|
|
of=NULL;
|
|
mt->setFilePointer(NULL);
|
|
}
|
|
}
|
|
std::time(&end_time);
|
|
cout << std::ctime(&end_time) << endl;
|
|
} else
|
|
cout << "Could not open "<< fname << " for reading " << endl;
|
|
}
|
|
|
|
|
|
return 0;
|
|
}
|
|
|