doxygen configuration file added

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorCalibration@14 113b152e-814d-439b-b186-022a431db7b5
This commit is contained in:
bergamaschi
2013-12-16 09:48:16 +00:00
parent 8d09f061da
commit 4111c65e37
4 changed files with 124 additions and 30 deletions

View File

@ -36,21 +36,24 @@ class commonModeSubtraction {
cmPed[i]=0;
}};
/** adds the pixel to the sum of pedestals -- virtual func
\param isc region of interest index
/** adds the pixel to the sum of pedestals -- virtual func must be overloaded to define the regions of interest
\param ix region of interest index
*/
virtual void addToCommonMode(double val, int isc=0) {
if (isc>=0 && isc<nROI) {
cmPed[isc]+=val;
nCm[isc]++;}};
virtual void addToCommonMode(double val, int ix=0, int iy=0) {
(void) ix; (void) iy;
//if (isc>=0 && isc<nROI) {
cmPed[0]+=val;
nCm[0]++;//}
};
/** gets the common mode i.e. the difference between the current average sum of pedestals mode and the average pedestal -- virtual func
/** gets the common mode i.e. the difference between the current average sum of pedestals mode and the average pedestal -- virtual func must be overloaded to define the regions of interest
\param isc region of interest index
\return the difference between the current average sum of pedestals and the average pedestal
*/
virtual double getCommonMode(int isc=0) {
if (isc>=0 && isc<nROI)
if (nCm[0]>0) return cmPed[0]/nCm[0]-cmStat[0].Mean();
virtual double getCommonMode(int ix=0, int iy=0) {
(void) ix; (void) iy;
if (nCm[0]>0) return cmPed[0]/nCm[0]-cmStat[0].Mean();
return 0;};