mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-22 14:38:14 +02:00
251 lines
6.1 KiB
C++
251 lines
6.1 KiB
C++
|
|
#include "ansi.h"
|
|
#include <iostream>
|
|
|
|
//#include "moench03T1ZmqData.h"
|
|
//#define DOUBLE_SPH
|
|
//#define MANYFILES
|
|
|
|
#ifdef DOUBLE_SPH
|
|
#include "single_photon_hit_double.h"
|
|
#endif
|
|
|
|
#ifndef DOUBLE_SPH
|
|
#include "single_photon_hit.h"
|
|
#endif
|
|
|
|
//#include "etaInterpolationPosXY.h"
|
|
#include "noInterpolation.h"
|
|
#include "etaInterpolationPosXY.h"
|
|
//#include "etaInterpolationCleverAdaptiveBins.h"
|
|
//#include "etaInterpolationRandomBins.h"
|
|
using namespace std;
|
|
#define NC 400
|
|
#define NR 400
|
|
#define MAX_ITERATIONS (nSubPixels*100)
|
|
|
|
#define XTALK
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
#ifndef FF
|
|
if (argc<9) {
|
|
cout << "Wrong usage! Should be: "<< argv[0] << " infile etafile outfile runmin runmax ns cmin cmax" << endl;
|
|
return 1;
|
|
}
|
|
#endif
|
|
|
|
#ifdef FF
|
|
if (argc<7) {
|
|
cout << "Wrong usage! Should be: "<< argv[0] << " infile etafile runmin runmax cmin cmax" << endl;
|
|
return 1;
|
|
}
|
|
#endif
|
|
int iarg=4;
|
|
char infname[10000];
|
|
char fname[10000];
|
|
char outfname[10000];
|
|
#ifndef FF
|
|
iarg=4;
|
|
#endif
|
|
|
|
#ifdef FF
|
|
iarg=3;
|
|
#endif
|
|
int runmin=atoi(argv[iarg++]);
|
|
int runmax=atoi(argv[iarg++]);
|
|
cout << "Run min: " << runmin << endl;
|
|
cout << "Run max: " << runmax << endl;
|
|
|
|
int nsubpix=4;
|
|
#ifndef FF
|
|
nsubpix=atoi(argv[iarg++]);
|
|
cout << "Subpix: " << nsubpix << endl;
|
|
#endif
|
|
float cmin=atof(argv[iarg++]);
|
|
float cmax=atof(argv[iarg++]);
|
|
cout << "Energy min: " << cmin << endl;
|
|
cout << "Energy max: " << cmax << endl;
|
|
//int etabins=500;
|
|
int etabins=1000;//nsubpix*2*100;
|
|
double etamin=-1, etamax=2;
|
|
//double etamin=-0.1, etamax=1.1;
|
|
double eta3min=-2, eta3max=2;
|
|
int quad;
|
|
double sum, totquad;
|
|
double sDum[2][2];
|
|
double etax, etay, int_x, int_y;
|
|
double eta3x, eta3y, int3_x, int3_y, noint_x, noint_y;
|
|
int ok;
|
|
int f0=-1;
|
|
int ix, iy, isx, isy;
|
|
int nframes=0, lastframe=-1;
|
|
double d_x, d_y, res=5, xx, yy;
|
|
int nph=0, badph=0, totph=0;
|
|
FILE *f=NULL;
|
|
|
|
#ifdef DOUBLE_SPH
|
|
single_photon_hit_double cl(3,3);
|
|
#endif
|
|
|
|
#ifndef DOUBLE_SPH
|
|
single_photon_hit cl(3,3);
|
|
#endif
|
|
|
|
int nSubPixels=nsubpix;
|
|
#ifndef NOINTERPOLATION
|
|
eta2InterpolationPosXY *interp=new eta2InterpolationPosXY(NC, NR, nsubpix, etabins, etamin, etamax);
|
|
//eta2InterpolationCleverAdaptiveBins *interp=new eta2InterpolationCleverAdaptiveBins(NC, NR, nsubpix, etabins, etamin, etamax);
|
|
#endif
|
|
#ifdef NOINTERPOLATION
|
|
noInterpolation *interp=new noInterpolation(NC, NR, nsubpix);
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FF
|
|
#ifndef NOINTERPOLATION
|
|
cout << "read ff " << argv[2] << endl;
|
|
sprintf(fname,"%s",argv[2]);
|
|
interp->readFlatField(fname);
|
|
interp->prepareInterpolation(ok);//, MAX_ITERATIONS);
|
|
#endif
|
|
// return 0;
|
|
#endif
|
|
#ifdef FF
|
|
cout << "Will write eta file " << argv[2] << endl;
|
|
#endif
|
|
|
|
int *img;
|
|
float *totimg=new float[NC*NR*nsubpix*nsubpix];
|
|
for (ix=0; ix<NC; ix++) {
|
|
for (iy=0; iy<NR; iy++) {
|
|
for (isx=0; isx<nsubpix; isx++) {
|
|
for (isy=0; isy<nsubpix; isy++) {
|
|
totimg[ix*nsubpix+isx+(iy*nsubpix+isy)*(NC*nsubpix)]=0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#ifdef FF
|
|
sprintf(outfname,argv[2]);
|
|
#endif
|
|
|
|
int irun;
|
|
for (irun=runmin; irun<runmax; irun++) {
|
|
sprintf(infname,argv[1],irun);
|
|
#ifndef FF
|
|
sprintf(outfname,argv[3],irun);
|
|
#endif
|
|
|
|
f=fopen(infname,"r");
|
|
if (f) {
|
|
cout << infname << endl;
|
|
nframes=0;
|
|
f0=-1;
|
|
|
|
while (cl.read(f)) {
|
|
totph++;
|
|
if (lastframe!=cl.iframe) {
|
|
lastframe=cl.iframe;
|
|
// cout << cl.iframe << endl;
|
|
// f0=cl.iframe;
|
|
if (nframes==0) f0=lastframe;
|
|
nframes++;
|
|
}
|
|
//quad=interp->calcQuad(cl.get_cluster(), sum, totquad, sDum);
|
|
quad=interp->calcEta(cl.get_cluster(), etax, etay, sum, totquad, sDum);
|
|
if (sum>cmin && totquad/sum>0.8 && totquad/sum<1.2 && sum<cmax ) {
|
|
nph++;
|
|
// if (sum>200 && sum<580) {
|
|
// interp->getInterpolatedPosition(cl.x,cl.y, totquad,quad,cl.get_cluster(),int_x, int_y);
|
|
// #ifdef SOLEIL
|
|
// if (cl.x>210 && cl.x<240 && cl.y>210 && cl.y<240) {
|
|
// #endif
|
|
#ifndef FF
|
|
// interp->getInterpolatedPosition(cl.x,cl.y, cl.get_cluster(),int_x, int_y);
|
|
interp->getInterpolatedPosition(cl.x,cl.y, etax, etay, quad,int_x, int_y);
|
|
// cout <<"**************"<< endl;
|
|
// cout << cl.x << " " << cl.y << " " << sum << endl;
|
|
// cl.print();
|
|
// cout << int_x << " " << int_y << endl;
|
|
// cout <<"**************"<< endl;
|
|
// if (etax!=0 && etay!=0 && etax!=1 && etay!=1)
|
|
interp->addToImage(int_x, int_y);
|
|
if (int_x<0 || int_y<0 || int_x>400 || int_y>400) {
|
|
cout <<"**************"<< endl;
|
|
cout << cl.x << " " << cl.y << " " << sum << endl;
|
|
cl.print();
|
|
cout << int_x << " " << int_y << endl;
|
|
cout <<"**************"<< endl;
|
|
}
|
|
#endif
|
|
#ifdef FF
|
|
// interp->addToFlatField(cl.get_cluster(), etax, etay);
|
|
// #ifdef UCL
|
|
// if (cl.x>50)
|
|
// #endif
|
|
// if (etax!=0 && etay!=0 && etax!=1 && etay!=1)
|
|
interp->addToFlatField(etax, etay);
|
|
// if (etax==0 || etay==0) cout << cl.x << " " << cl.y << endl;
|
|
|
|
#endif
|
|
// #ifdef SOLEIL
|
|
// }
|
|
// #endif
|
|
|
|
if (nph%1000000==0) cout << nph << endl;
|
|
if (nph%10000000==0) {
|
|
#ifndef FF
|
|
interp->writeInterpolatedImage(outfname);
|
|
#endif
|
|
#ifdef FF
|
|
interp->writeFlatField(outfname);
|
|
#endif
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
fclose(f);
|
|
#ifdef FF
|
|
interp->writeFlatField(outfname);
|
|
#endif
|
|
|
|
#ifndef FF
|
|
interp->writeInterpolatedImage(outfname);
|
|
|
|
img=interp->getInterpolatedImage();
|
|
for (ix=0; ix<NC; ix++) {
|
|
for (iy=0; iy<NR; iy++) {
|
|
for (isx=0; isx<nsubpix; isx++) {
|
|
for (isy=0; isy<nsubpix; isy++) {
|
|
totimg[ix*nsubpix+isx+(iy*nsubpix+isy)*(NC*nsubpix)]+=img[ix*nsubpix+isx+(iy*nsubpix+isy)*(NC*nsubpix)];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
cout << "Read " << nframes << " frames (first frame: " << f0 << " last frame: " << lastframe << " delta:" << lastframe-f0 << ") nph="<< nph <<endl;
|
|
interp->clearInterpolatedImage();
|
|
#endif
|
|
|
|
} else
|
|
cout << "could not open file " << infname << endl;
|
|
}
|
|
#ifndef FF
|
|
sprintf(outfname,argv[3],11111);
|
|
WriteToTiff(totimg, outfname,NC*nsubpix,NR*nsubpix);
|
|
#endif
|
|
|
|
#ifdef FF
|
|
interp->writeFlatField(outfname);
|
|
#endif
|
|
|
|
cout << "Filled " << nph << " (/"<< totph <<") " << endl;
|
|
return 0;
|
|
}
|
|
|