Hi MJ,<br><br>In Gate_v4 the random generator has changed. Now this is the Mersenne Twister, that is more stable, longer period and faster than the old one (JamesRandom).<br>Unfortunately people who changed this stuff forgot to update the gjs program. So the gjs program still products JamesRandom seed files, and those files are ignored by the Mersenne Twister generator ... That is why you always get the default seed value (fixed in CLHEP) and the same results for all splited macros.<br>
<br>To fix it:<br><br>In the main program, Gate.cc file, there are few lines at the beginning of the main concerning the random generator:<br><br>//<br>// random engine<br>//<br><br>  //CLHEP::HepJamesRandom randomEngine;<br>
  //CLHEP::Ranlux64Engine randomEngine;<br>    CLHEP::MTwistEngine randomEngine;<br>    CLHEP::HepRandom::setTheEngine(&amp;randomEngine);<br><br>So just comment the line concerning the Mersenne Twister and uncomment the line concerning the JamesRandom engine, and recompile:<br>
<br>//<br>// random engine<br>//<br><br>  CLHEP::HepJamesRandom randomEngine;<br>  //CLHEP::Ranlux64Engine randomEngine;<br>  //CLHEP::MTwistEngine randomEngine;<br>    CLHEP::HepRandom::setTheEngine(&amp;randomEngine);<br>
<br>So you will use the old generator but it will work with the gjs random seed files...<br><br>And don&#39;t worry, this is fixed for the next version and new macro commands to control everything concerning the random generators will be provided (type of generator, automatic randomized seed, fixed seed, use of seed files, etc...). Coming soon.<br>
<br>Cheers,<br>Simon<br><br><br><br><div class="gmail_quote">On Thu, Apr 9, 2009 at 8:01 AM, Park MinJae <span dir="ltr">&lt;<a href="mailto:MJ@toti.us">MJ@toti.us</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
Dear Gaters,<br>
<br>
Long time, no see~ :)<br>
<br>
<br>
I recently changed 3.12 to 4.00 on x64...<br>
<br>
Everything of Gate works fine...but the split jobs generated SAME results...<br>
<br>
I checked the seed-files...Initial Seed were same...9876...<br>
<br>
I took a look into the source files of Gate and tried to put one more<br>
randomization step at the initial seeds...I couldn&#39;t...<br>
<br>
Thank you for any information about it...:)<br>
<br>
Cordially yours,<br>
MJ<br>
<br>
//=================================================<br>
//  Park MinJae<br>
//  SNU BME Ph.D. Candidate<br>
//<br>
//  DialTo:+82-17-711-7809<br>
//  MailTo:<a href="mailto:MJ@ToTi.us">MJ@ToTi.us</a><br>
//<br>
//  Make the Dream True...<br>
//=================================================<br>
<br>
<br>
_______________________________________________<br>
Gate-users mailing list<br>
<a href="mailto:Gate-users@lists.healthgrid.org">Gate-users@lists.healthgrid.org</a><br>
<a href="http://lists.healthgrid.org/mailman/listinfo/gate-users" target="_blank">http://lists.healthgrid.org/mailman/listinfo/gate-users</a><br>
</blockquote></div><br>