added photon counter no thread

This commit is contained in:
2021-03-12 08:41:48 +01:00
parent f11cc4a7f3
commit 70048a9220
8 changed files with 590 additions and 117 deletions

View File

@ -208,11 +208,11 @@ FILE *getFilePointer(){return det->getFilePointer();};
return NULL;
}
virtual int *getFlatField(int &nb, double emi, double ema){
virtual int *getFlatField(int &nb, int &nby, double emi, double ema){
slsInterpolation *interp=(det)->getInterpolation();
int *ff=NULL;
if (interp) {
ff=interp->getFlatField(nb,emi,ema);
ff=interp->getFlatField(nb,nby,emi,ema);
}
return ff;
}