]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STARLIGHT/starlight/src/randomgenerator.cpp
Updated STARLIGHT from r176 ro r188 (http://starlight.hepforge.org/svn/)
[u/mrichter/AliRoot.git] / STARLIGHT / starlight / src / randomgenerator.cpp
index 51ad33d854aed80de410c15e0ddab8cd3830ab9b..b444d61a8b5c5819fb80dbe26756db022c1315d9 100644 (file)
@@ -20,9 +20,9 @@
 ///////////////////////////////////////////////////////////////////////////
 //
 // File and Version Information:
-// $Rev:: 156                         $: revision of last commit
-// $Author:: odjuvsla                 $: author of last commit
-// $Date:: 2013-10-06 16:17:52 +0200 #$: date of last commit
+// $Rev:: 178                         $: revision of last commit
+// $Author:: jnystrand                $: author of last commit
+// $Date:: 2014-09-11 20:57:13 +0200 #$: date of last commit
 //
 // Description:
 //
@@ -91,7 +91,7 @@ void randomGenerator::SetSeed(unsigned int seed)
 // with many zero in the bit pattern (like 2**28).
 // see http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html
 
-  Lockguard<MutexPosix> guard(&_mutex);
+  // Lockguard<MutexPosix> guard(&_mutex);
   
   _count624 = 624;
   int i,j;
@@ -112,7 +112,7 @@ double randomGenerator::Rndom(int)
 //  Produces uniformly-distributed floating points in ]0,1]
 //  Method: Mersenne Twistor
 
-   Lockguard<MutexPosix> guard(&_mutex);
+  // Lockguard<MutexPosix> guard(&_mutex);
    
    unsigned int y;