]> git.treefish.org Git - phys/heatbath.git/blobdiff - sim-1mr-.hpp
Added description of used algorithms.
[phys/heatbath.git] / sim-1mr-.hpp
index 00e15beed03479c6404a7a18b6ac96a70f18f66c..a7cde920559d17bdd0ef4bd55d542057aff201ad 100644 (file)
@@ -43,7 +43,6 @@ sim::sim(o815 *_O815) : o815::sim( _O815,
 
 void sim::updatePhi (const int& x) 
 {
-  const double theta = gsl_rng_uniform(rangsl) * 2*M_PI;
   complex<double> V=0;
 
   for (int nu=0; nu<4; nu++)
@@ -53,10 +52,8 @@ void sim::updatePhi (const int& x)
                        - 1./M * norm(V)
                        + 2 * real( conf[x].phi * conj(V) ) );
 
-  double oldarg = arg(conf[x].phi);
-
   conf[x].phi = sqrt(std::log( 1./(1-r) )) / sqrt(M)
-    * polar(1.0, oldarg)
+    * polar( 1.0, arg(conf[x].phi) )
     + V / M;
 }