Print

Print


Commit in lcsim/src/org/lcsim/recon/tracking/seedtracker on MAIN
MultipleScattering.java+1-11.9 -> 1.10
Fixed bug when computing the multiple scattering contribution.
The power was applied without diving with sth.

lcsim/src/org/lcsim/recon/tracking/seedtracker
MultipleScattering.java 1.9 -> 1.10
diff -u -r1.9 -r1.10
--- MultipleScattering.java	14 Jul 2013 05:53:27 -0000	1.9
+++ MultipleScattering.java	6 Sep 2013 19:25:37 -0000	1.10
@@ -168,7 +168,7 @@
             //  still do a z vs s fit by assuming the track direction is reasonably
             //  well known and converting the radial measurement error into an effective
             //  z coordinate error.
-            z_ms2 += Math.pow((hitpath - scatpath) * angle / sth2, 2);
+            z_ms2 += Math.pow((hitpath - scatpath) * angle, 2)/sth2;
         }
         
         //  Return the requested MultipleScatter
CVSspam 0.2.12


Use REPLY-ALL to reply to list

To unsubscribe from the LCD-CVS list, click the following link:
https://listserv.slac.stanford.edu/cgi-bin/wa?SUBED1=LCD-CVS&A=1