Parcourir la source

Add README.md

Andrej Studen il y a 4 ans
Parent
commit
021162ec6d
1 fichiers modifiés avec 13 ajouts et 0 suppressions
  1. 13 0
      README.md

+ 13 - 0
README.md

@@ -0,0 +1,13 @@
+
+
+### Combined resolution calculation
+
+```shell
+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);
+}
+```