Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • leggett/acts-core
  • adye/acts-core
  • xju/acts-core
  • corentin/acts-core
  • keli/acts-core
  • gli/acts-core
  • xai/acts-core
  • bschlag/acts-core
  • berkeleylab/acts/acts-core
  • emoyse/acts-core
  • smh/acts-core
  • pagessin/acts-core
  • chamont/acts-core
  • sroe/a-common-tracking-sw
  • calaf/a-common-tracking-sw
  • hgraslan/acts-core
16 results
Show changes
Commits on Source (2)
......@@ -134,8 +134,8 @@ namespace Test {
bool debugMode = false;
// Set up RNG
std::random_device rd;
std::mt19937 gen(rd());
int mySeed = 31415;
std::mt19937 gen(mySeed);
// Set up constant B-Field
ConstantBField bField(Vector3D(0., 0., 1.) * units::_T);
......@@ -283,8 +283,8 @@ namespace Test {
bool debugMode = false;
// Set up RNG
std::random_device rd;
std::mt19937 gen(rd());
int mySeed = 31415;
std::mt19937 gen(mySeed);
// Set up constant B-Field
ConstantBField bField(Vector3D(0., 0., 1.) * units::_T);
......
......@@ -67,8 +67,8 @@ namespace Test {
unsigned int nTracks = 100;
// Set up RNG
std::random_device rd;
std::mt19937 gen(rd());
int mySeed = 31415;
std::mt19937 gen(mySeed);
// Set up constant B-Field
ConstantBField bField(Vector3D(0., 0., 1.) * units::_T);
......