TPCCLIB
Loading...
Searching...
No Matches
recovery.c
Go to the documentation of this file.
1
5/*****************************************************************************/
6#include "libtpcidi.h"
7/*****************************************************************************/
8
9/*****************************************************************************/
24double rcPeakPET(
26 double FWHM,
28 double R
29) {
30 double s, rc;
31 s=FWHM/2.354820; // 2*sqrt(2*ln(2))
32 rc=1.0-exp(-R*R/(2.0*s*s));
33 return(rc);
34}
35/*****************************************************************************/
36
37/*****************************************************************************/
Header file for libtpcidi.
double rcPeakPET(double FWHM, double R)
Definition recovery.c:24