mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-22 03:40:04 +02:00

* removed Makefile for moench and integrated the build in CMake * broke out tiff reading and writing to its own library * moved tiff includes to include/sls * moved tiffio source to src * removed incorrectly used bps * cleanup and tests for tiffio * removed using namespace std from header * some fixing for moench04 * Program for offline processing renamed Co-authored-by: Anna Bergamaschi <anna.bergamaschi@psi.ch>
385 lines
11 KiB
C++
385 lines
11 KiB
C++
// SPDX-License-Identifier: LGPL-3.0-or-other
|
|
// Copyright (C) 2021 Contributors to the SLS Detector Package
|
|
//#include "sls/ansi.h"
|
|
#include <iostream>
|
|
#undef CORR
|
|
|
|
#define C_GHOST 0.0004
|
|
|
|
#define CM_ROWS 50
|
|
|
|
#define RAWDATA
|
|
|
|
#ifndef MOENCH04
|
|
#ifndef RECT
|
|
#include "moench03T1ReceiverDataNew.h"
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef RECT
|
|
#include "moench03T1ReceiverDataNewRect.h"
|
|
#endif
|
|
|
|
|
|
#ifdef MOENCH04
|
|
#include "moench04CtbZmq10GbData.h"
|
|
#endif
|
|
|
|
#include "multiThreadedCountingDetector.h"
|
|
#include "moench03CommonMode.h"
|
|
#include "moench03GhostSummation.h"
|
|
#include "singlePhotonDetector.h"
|
|
|
|
#include <fstream>
|
|
#include <map>
|
|
#include <stdio.h>
|
|
#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(no extension) [runmin] [runmax] [pedfile (raw or tiff)] [threshold] "
|
|
"[nframes] [xmin xmax ymin ymax] [gainmap]"
|
|
<< 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 fifosize = 1000;
|
|
int nthreads = 10;
|
|
int csize = 3;
|
|
int nsigma = 5;
|
|
int nped = 10000;
|
|
|
|
int cf = 0;
|
|
|
|
#ifdef RECT
|
|
cout << "Should be rectangular but now it will crash! No data structure defined!" << endl;
|
|
#endif
|
|
#ifndef MOENCH04
|
|
moench03T1ReceiverDataNew *decoder = new moench03T1ReceiverDataNew();
|
|
cout << "MOENCH03!" << endl;
|
|
#endif
|
|
|
|
#ifdef MOENCH04
|
|
moench04CtbZmq10GbData *decoder = new moench04CtbZmq10GbData();
|
|
cout << "MOENCH04!" << endl;
|
|
#endif
|
|
|
|
|
|
int nx = 400, ny = 400;
|
|
|
|
decoder->getDetectorSize(nx, ny);
|
|
#ifdef CORR
|
|
int ncol_cm = CM_ROWS;
|
|
double xt_ghost = C_GHOST;
|
|
#endif
|
|
moench03CommonMode *cm = NULL;
|
|
moench03GhostSummation *gs;
|
|
double *gainmap = NULL;
|
|
//float *gm;
|
|
|
|
int ff, np;
|
|
// cout << " data size is " << 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 = 1;
|
|
|
|
if (argc >= 8) {
|
|
thr = atof(argv[7]);
|
|
}
|
|
|
|
int nframes = 0;
|
|
|
|
if (argc >= 9) {
|
|
nframes = atoi(argv[8]);
|
|
}
|
|
|
|
int xmin = 0, xmax = nx, ymin = 0, ymax = ny;
|
|
if (argc >= 13) {
|
|
xmin = atoi(argv[9]);
|
|
xmax = atoi(argv[10]);
|
|
ymin = atoi(argv[11]);
|
|
ymax = atoi(argv[12]);
|
|
}
|
|
|
|
char *gainfname = NULL;
|
|
if (argc > 13) {
|
|
gainfname = argv[13];
|
|
cout << "Gain map file name is: " << gainfname << endl;
|
|
}
|
|
|
|
char ffname[10000];
|
|
char fname[10000];
|
|
char imgfname[10000];
|
|
char cfname[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;
|
|
if (thr > 0)
|
|
cout << "threshold is " << thr << endl;
|
|
cout << "Nframes is " << nframes << endl;
|
|
|
|
uint32_t nnx, nny;
|
|
|
|
#ifdef CORR
|
|
cout << "Applying common mode " << ncol_cm << endl;
|
|
cm = new moench03CommonMode(ncol_cm);
|
|
|
|
cout << "Applying ghost corrections " << xt_ghost << endl;
|
|
gs = new moench03GhostSummation(decoder, xt_ghost);
|
|
#endif
|
|
|
|
singlePhotonDetector *filter = new singlePhotonDetector(
|
|
decoder, csize, nsigma, 1, cm, nped, 200, -1, -1, gainmap, gs);
|
|
|
|
if (gainfname) {
|
|
|
|
if (filter->readGainMap(gainfname))
|
|
cout << "using gain map " << gainfname << endl;
|
|
else
|
|
cout << "Could not open gain map " << gainfname << endl;
|
|
} else
|
|
thr = 0.15 * thr;
|
|
filter->newDataSet();
|
|
//int dsize = decoder->getDataSize();
|
|
|
|
if (thr > 0) {
|
|
cout << "threshold is " << thr << endl;
|
|
filter->setThreshold(thr);
|
|
cf = 0;
|
|
|
|
} else
|
|
cf = 1;
|
|
|
|
filter->setROI(xmin, xmax, ymin, ymax);
|
|
std::time(&end_time);
|
|
cout << std::ctime(&end_time) << endl;
|
|
|
|
char *buff;
|
|
|
|
// multiThreadedAnalogDetector *mt=new
|
|
// multiThreadedAnalogDetector(filter,nthreads,fifosize);
|
|
multiThreadedCountingDetector *mt =
|
|
new multiThreadedCountingDetector(filter, nthreads, fifosize);
|
|
#ifndef ANALOG
|
|
mt->setDetectorMode(ePhotonCounting);
|
|
cout << "Counting!" << endl;
|
|
if (thr > 0) {
|
|
cf = 0;
|
|
}
|
|
#endif
|
|
//{
|
|
#ifdef ANALOG
|
|
mt->setDetectorMode(eAnalog);
|
|
cout << "Analog!" << endl;
|
|
cf = 0;
|
|
// thr1=thr;
|
|
#endif
|
|
// }
|
|
|
|
mt->StartThreads();
|
|
mt->popFree(buff);
|
|
|
|
// cout << "mt " << endl;
|
|
|
|
int ifr = 0;
|
|
|
|
double *ped=new double[nx * ny];//, *ped1;
|
|
|
|
if (pedfile) {
|
|
|
|
cout << "PEDESTAL " << endl;
|
|
sprintf(imgfname, "%s/pedestals.tiff", outdir);
|
|
|
|
if (string(pedfile).find(".tif") == std::string::npos) {
|
|
sprintf(fname, "%s", pedfile);
|
|
cout << fname << endl;
|
|
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)) {
|
|
if (np == 40) {
|
|
mt->pushData(buff);
|
|
mt->nextThread();
|
|
mt->popFree(buff);
|
|
ifr++;
|
|
if (ifr % 100 == 0)
|
|
cout << ifr << " " << ff << " " << np << endl;
|
|
} else
|
|
cout << ifr << " " << ff << " " << np << endl;
|
|
ff = -1;
|
|
}
|
|
filebin.close();
|
|
while (mt->isBusy()) {
|
|
;
|
|
}
|
|
|
|
} else
|
|
cout << "Could not open pedestal file " << fname
|
|
<< " for reading " << endl;
|
|
} else {
|
|
float *pp = ReadFromTiff(pedfile, nny, nnx);
|
|
if (pp && (int)nnx == nx && (int)nny == ny) {
|
|
for (int i = 0; i < nx * ny; i++) {
|
|
ped[i] = pp[i];
|
|
}
|
|
delete[] pp;
|
|
mt->setPedestal(ped);
|
|
cout << "Pedestal set from tiff file " << pedfile << endl;
|
|
} else {
|
|
cout << "Could not open pedestal tiff file " << pedfile
|
|
<< " for reading " << endl;
|
|
}
|
|
}
|
|
mt->writePedestal(imgfname);
|
|
std::time(&end_time);
|
|
cout << std::ctime(&end_time) << endl;
|
|
}
|
|
|
|
ifr = 0;
|
|
int ifile = 0;
|
|
|
|
mt->setFrameMode(eFrame);
|
|
|
|
for (int irun = runmin; irun <= runmax; irun++) {
|
|
cout << "DATA ";
|
|
// sprintf(fn,fformat,irun);
|
|
sprintf(ffname, "%s/%s.raw", indir, fformat);
|
|
sprintf(fname, (const char*)ffname, irun);
|
|
sprintf(ffname, "%s/%s.tiff", outdir, fformat);
|
|
sprintf(imgfname, (const char*)ffname, irun);
|
|
sprintf(ffname, "%s/%s.clust", outdir, fformat);
|
|
sprintf(cfname, (const char*)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 && cf != 0) { // cluster finder
|
|
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)) {
|
|
if (np == 40) {
|
|
// //push
|
|
mt->pushData(buff);
|
|
// // //pop
|
|
mt->nextThread();
|
|
mt->popFree(buff);
|
|
|
|
ifr++;
|
|
if (ifr % 100 == 0)
|
|
cout << ifr << " " << ff << endl;
|
|
if (nframes > 0) {
|
|
if (ifr % nframes == 0) {
|
|
sprintf(ffname, "%s/%s_f%05d.tiff", outdir, fformat,
|
|
ifile);
|
|
sprintf(imgfname, (const char*)ffname, irun);
|
|
mt->writeImage(imgfname, thr1);
|
|
mt->clearImage();
|
|
ifile++;
|
|
}
|
|
}
|
|
} else
|
|
cout << ifr << " " << ff << " " << np << endl;
|
|
ff = -1;
|
|
}
|
|
cout << "--" << endl;
|
|
filebin.close();
|
|
while (mt->isBusy()) {
|
|
;
|
|
}
|
|
if (nframes >= 0) {
|
|
if (nframes > 0) {
|
|
sprintf(ffname, "%s/%s_f%05d.tiff", outdir, fformat, ifile);
|
|
sprintf(imgfname, (const char*)ffname, irun);
|
|
} else {
|
|
sprintf(ffname, "%s/%s.tiff", outdir, fformat);
|
|
sprintf(imgfname, (const char*)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;
|
|
}
|
|
if (nframes < 0) {
|
|
sprintf(ffname, "%s/%s.tiff", outdir, fformat);
|
|
strcpy(imgfname, ffname);
|
|
cout << "Writing tiff to " << imgfname << " " << thr1 << endl;
|
|
mt->writeImage(imgfname, thr1);
|
|
}
|
|
|
|
return 0;
|
|
}
|