Geant4-11
G4RNGHelper.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// G4TemplateRNGHelper
27//
28// Class description:
29//
30// Helper class for RNG Engine seeds.
31// Used in MT builds to guarantee event reproducibility.
32// The function of this class is to return a RNG Engine seed given its index.
33// It is a simple templated container that allows to add seeds (AddOneSeed)
34// and retrieve a seed (GetSeed) by index.
35//
36// The normal use is with G4RNGHelper where each element of the container
37// represents a seed. To enforce strong-reproducibility the variant with
38// the RNG Engine status file names is available.
39
40// Author: A.Dotti (SLAC), 5 July 2013
41// --------------------------------------------------------------------
42#ifndef G4TemplateRNGHelper_hh
43#define G4TemplateRNGHelper_hh 1
44
45#include <queue>
46#include <vector>
47
48#include "globals.hh"
49
50template <class T>
52{
53 public:
54
55 // The container is modeled as a (shared) singleton
58 using SeedsQueue = std::vector<T>;
59 using SeedsQueueSize_type = typename SeedsQueue::size_type;
60
61 virtual ~G4TemplateRNGHelper();
62
63 // Returns seed given id
64 virtual const T GetSeed(const G4int& sdId)
65 {
66 G4int seedId = sdId - 2 * offset;
67 if(seedId < static_cast<G4int>(seeds.size()))
68 {
69 T& seed = seeds[seedId];
70 return seed;
71 }
73 msg << "No seed number " << seedId << "(" << seeds.size() << " available)\n"
74 << " Original seed number " << sdId << " filled so far " << offset;
75 G4Exception("G4RNGHelper::GetSeed", "Run0115", FatalException, msg);
76 return T();
77 }
78
79 // Adds one seed to the collection
80 void AddOneSeed(const T& seed) { seeds.push_back(seed); }
81
82 // Fills N primary seed pairs
83 void Fill(G4double* dbl, G4int nev, G4int nev_tot, G4int nrpe)
84 {
85 seeds.clear();
86 for(G4int i = 0; i < nrpe * nev; ++i)
87 {
88 seeds.push_back((G4long)(100000000L * dbl[i]));
89 }
90 offset = 0;
91 nev_filled = nev;
92 nev_total = nev_tot;
93 nRandParEvent = nrpe;
94 }
95
96 void Refill(G4double* dbl, G4int nev)
97 {
98 if(nev == 0)
99 return;
100 seeds.clear();
101 for(G4int i = 0; i < nRandParEvent * nev; ++i)
102 {
103 seeds.push_back((G4long)(100000000L * dbl[i]));
104 }
106 nev_filled = nev;
107 }
108
109 // Number of available seeds
110 const SeedsQueueSize_type GetNumberSeeds() const { return seeds.size(); }
111
112 // Empty the seeds container
113 virtual void Clear() { seeds.clear(); }
114
115 protected:
116
118 // Note: following numbers are number of events.
119 // seeds are generated for nRandParEvent times n_event
124
125 private:
126
128
129 private:
130
132};
133
136using G4SeedsQueue = std::queue<G4long>;
137
138#endif
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
Definition: G4Exception.cc:35
std::ostringstream G4ExceptionDescription
Definition: G4Exception.hh:40
std::queue< G4long > G4SeedsQueue
Definition: G4RNGHelper.hh:136
double G4double
Definition: G4Types.hh:83
long G4long
Definition: G4Types.hh:87
int G4int
Definition: G4Types.hh:85
virtual ~G4TemplateRNGHelper()
Definition: G4RNGHelper.cc:97
static G4TemplateRNGHelper< T > * GetInstance()
Definition: G4RNGHelper.cc:42
std::vector< T > SeedsQueue
Definition: G4RNGHelper.hh:58
void AddOneSeed(const T &seed)
Definition: G4RNGHelper.hh:80
static G4TemplateRNGHelper< T > * instance
Definition: G4RNGHelper.hh:131
const SeedsQueueSize_type GetNumberSeeds() const
Definition: G4RNGHelper.hh:110
static G4TemplateRNGHelper< T > * GetInstanceIfExist()
Definition: G4RNGHelper.cc:53
typename SeedsQueue::size_type SeedsQueueSize_type
Definition: G4RNGHelper.hh:59
virtual void Clear()
Definition: G4RNGHelper.hh:113
virtual const T GetSeed(const G4int &sdId)
Definition: G4RNGHelper.hh:64
void Fill(G4double *dbl, G4int nev, G4int nev_tot, G4int nrpe)
Definition: G4RNGHelper.hh:83
void Refill(G4double *dbl, G4int nev)
Definition: G4RNGHelper.hh:96