Back to home page

sPhenix code displayed by LXR

 
 

    


Warning, /analysis/ForwardTracking/macros/IsInCurvedRich.m is written in an unsupported language. File is not indexed.

0001 function in = IsInCurvedRich(z,eta)
0002     
0003     Theta0 = 2*atan(exp(-eta));
0004     z_inner = 191.27840756391092 - 83.84605684233031*(-0.4 + Theta0) - 170.66757313824704*power(-0.4 + Theta0,2);
0005     z_outer = 283.38450696419943 - 122.78789107319537*(-0.4 + Theta0) - 216.7206228383916*power(-0.4 + Theta0,2);
0006     
0007     in =  (z>z_inner & z<z_outer);
0008         
0009 end