Class Reference for E1039 Core & Analysis Software
PHRandomSeed.cc
Go to the documentation of this file.
1 #include "PHRandomSeed.h"
2 #include "recoConsts.h"
3 
4 #include <cstdlib>
5 #include <iostream>
6 #include <queue>
7 #include <random>
8 
9 using namespace std;
10 
11 static queue<unsigned int> seedqueue;
12 static std::mt19937 fRandomGenerator;
13 static std::uniform_int_distribution<unsigned int> fDistribution;
14 
15 bool PHRandomSeed::fInitialized(false);
16 bool PHRandomSeed::fFixed(false);
18 
19 unsigned int PHRandomSeed::GetSeed()
20 {
21  unsigned int iseed;
22  if (!seedqueue.empty())
23  {
24  iseed = seedqueue.front();
25  seedqueue.pop();
26  }
27  else
28  {
29  if (!fInitialized)
30  {
31  InitSeed();
32  }
33  if (fFixed)
34  {
36  }
37  else
38  {
39  std::random_device rdev;
40  iseed = rdev();
41  }
42  }
43  if (verbose)
44  {
45  cout << "PHRandomSeed::GetSeed() seed: " << iseed << endl;
46  }
47  return iseed;
48 }
49 
51 {
53  if (rc->FlagExist("RANDOMSEED"))
54  {
55  // fixed init seed
56  const unsigned int seed = rc->get_IntFlag("RANDOMSEED");
57  cout << "PHRandomSeed: using fixed seed " << seed << endl;
58  fRandomGenerator.seed(seed);
59  fFixed = true;
60  fInitialized = true;
61  }
62 }
63 
64 void PHRandomSeed::LoadSeed(const unsigned int iseed)
65 {
66  seedqueue.push(iseed);
67 }
68 
69 void PHRandomSeed::Verbosity(const int iverb)
70 {
71  verbose = iverb;
72 }
static queue< unsigned int > seedqueue
Definition: PHRandomSeed.cc:11
static std::uniform_int_distribution< unsigned int > fDistribution
Definition: PHRandomSeed.cc:13
static std::mt19937 fRandomGenerator
Definition: PHRandomSeed.cc:12
virtual int FlagExist(const std::string &name) const
Definition: PHFlag.cc:255
virtual int get_IntFlag(const std::string &name) const
Definition: PHFlag.cc:117
static bool fFixed
Definition: PHRandomSeed.h:27
static int verbose
Definition: PHRandomSeed.h:29
static void InitSeed()
Definition: PHRandomSeed.cc:50
static unsigned int GetSeed()
get a seed
Definition: PHRandomSeed.cc:19
static bool fInitialized
Definition: PHRandomSeed.h:28
static void LoadSeed(const unsigned int iseed)
Definition: PHRandomSeed.cc:64
static void Verbosity(const int iverb)
Definition: PHRandomSeed.cc:69
static recoConsts * instance()
Definition: recoConsts.cc:7