Aucune description

Andrej 626d52155e Adding phantoms il y a 2 ans
report c34eef3ebe Adding missing files il y a 4 ans
FBP.py 9ea5d8f901 Adding python tools for simulation and reconstruction il y a 4 ans
Glinear.py 9ea5d8f901 Adding python tools for simulation and reconstruction il y a 4 ans
MLEM.py 40782d36b6 Making sure inputs are not modified by MLEM il y a 2 ans
README.md 021162ec6d Add README.md il y a 4 ans
__init__.py 9ea5d8f901 Adding python tools for simulation and reconstruction il y a 4 ans
bkg.out 626d52155e Adding phantoms il y a 2 ans
fisher1D.py 626d52155e Adding phantoms il y a 2 ans
gaussian_filter.py 9ea5d8f901 Adding python tools for simulation and reconstruction il y a 4 ans
getResoultion.C c6fdabcaa7 Adding root resolution script to generate resolution along z il y a 4 ans
phantom.py 9ea5d8f901 Adding python tools for simulation and reconstruction il y a 4 ans
phantom_0_rw_0p6.out 626d52155e Adding phantoms il y a 2 ans
runSimulation.ipynb 626d52155e Adding phantoms il y a 2 ans
setMask.py 9ea5d8f901 Adding python tools for simulation and reconstruction il y a 4 ans
useM.py 9ea5d8f901 Adding python tools for simulation and reconstruction il y a 4 ans

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);
}