Açıklama Yok

Andrej fe65d45739 Adding report 4 yıl önce
report fe65d45739 Adding report 4 yıl önce
FBP.py 9ea5d8f901 Adding python tools for simulation and reconstruction 4 yıl önce
Glinear.py 9ea5d8f901 Adding python tools for simulation and reconstruction 4 yıl önce
MLEM.py 9ea5d8f901 Adding python tools for simulation and reconstruction 4 yıl önce
README.md 021162ec6d Add README.md 4 yıl önce
__init__.py 9ea5d8f901 Adding python tools for simulation and reconstruction 4 yıl önce
gaussian_filter.py 9ea5d8f901 Adding python tools for simulation and reconstruction 4 yıl önce
getResoultion.C c6fdabcaa7 Adding root resolution script to generate resolution along z 4 yıl önce
phantom.py 9ea5d8f901 Adding python tools for simulation and reconstruction 4 yıl önce
setMask.py 9ea5d8f901 Adding python tools for simulation and reconstruction 4 yıl önce
useM.py 9ea5d8f901 Adding python tools for simulation and reconstruction 4 yıl önce

README.md

Combined resolution calculation

for (int i=0;i<gr.GetN();i++) { 
    double ctheta0=1-(i+0.5)/(gr.GetN()); 
    double ttheta0=sqrt(1-pow(ctheta0,2))/ctheta0;
    double sigmaT=getResolutionT(ctheta0,40)/15;
    double sigmaX=getResolution(ctheta0,40)/2;
    gr.SetPoint(i,ttheta0,1./sigmaT+1./sigmaX);
}