An art service to assist in the distribution of guaranteed unique seeds to all engines within an art job. More...
#include <NuRandomService.h>
Classes | |
class | CLHEPengineSeeder |
Seeder_t functor setting the seed of a CLHEP::HepRandomEngine engine (untested!) More... | |
Public Types | |
using | seed_t = art::detail::EngineCreator::seed_t |
using | engine_t = CLHEP::HepRandomEngine |
using | SeedMaster_t = SeedMaster< seed_t > |
type of object providing seeds More... | |
using | EngineId = SeedMaster_t::EngineId |
type of random engine ID More... | |
Public Member Functions | |
NuRandomService (const fhicl::ParameterSet &, art::ActivityRegistry &) | |
NuRandomService (NuRandomService const &)=delete | |
NuRandomService const & | operator= (NuRandomService const &)=delete |
NuRandomService (NuRandomService &&)=delete | |
NuRandomService const & | operator= (NuRandomService &&)=delete |
~NuRandomService ()=default | |
seed_t | getSeed (std::string instanceName) |
Returns a seed for the engine with specified instance name. More... | |
seed_t | getSeed () |
Returns a seed for the engine with default instance name. More... | |
seed_t | getGlobalSeed (std::string instanceName) |
Returns a seed for the global engine with specified instance name. More... | |
seed_t | getCurrentSeed (std::string instanceName) const |
Returns the last computed seed for specified engine of current module. More... | |
seed_t | getCurrentSeed () const |
Returns the last computed seed for the default engine of current module. More... | |
seed_t | getGlobalCurrentSeed (std::string instanceName) const |
Returns the last computed seed for the specified global engine. More... | |
seed_t | registerEngine (CLHEP::HepRandomEngine &engine, std::string instance="") |
Registers an existing CLHEP engine with NuRandomService. More... | |
seed_t | registerEngine (CLHEP::HepRandomEngine &engine, std::string instance, fhicl::ParameterSet const &pset, std::initializer_list< std::string > pnames) |
template<class Stream > | |
void | print (Stream &&out) const |
Prints known (EngineId,seed) pairs. More... | |
void | print () const |
Prints to the framework Info logger. More... | |
Create and register an engine | |
The life time of the engine is managed by art::RandomNumberGenerator, while the seeding is managed by this service. This is a replacement of art::detail::EngineCreator-derived classes. The use of createEngine() class of function is discouraged and this function might be removed in the future, because of its non-clean use of module interfaces. The recommended approach is more verbose; here an example for an engine with a non-default instance name: std::string const instanceName = "instanceName"; auto& Seeds = *(art::ServiceHandle<rndm::NuRandomService>()); // declare an engine; NuRandomService associates an (unknown) engine, in // the current module and an instance name, with a seed (returned) auto const seed = Seeds.declareEngine(instanceName); // now create the engine (for example, use art); seed will be set auto& engine = createEngine(seed, "HepJamesRandom", instanceName); // finally, complete the registration; seed will be set again Seeds.defineEngine(engine); This is equivalent to the discouraged call auto& Seeds = *(art::ServiceHandle<rndm::NuRandomService>()); Seeds.createEngine(*this, "HepJamesRandom", "instanceName"); | |
template<typename Module > | |
std::reference_wrapper< engine_t > | createEngine (Module &module, std::string type, std::string instance="") |
Creates an engine with RandomNumberGenerator service. More... | |
template<typename Module > | |
std::reference_wrapper< engine_t > | createEngine (Module &module) |
template<typename Module > | |
std::reference_wrapper< engine_t > | createEngine (Module &module, std::string type, std::string instance, fhicl::ParameterSet const &pset, std::string pname) |
Creates an engine with RandomNumberGenerator service. More... | |
template<typename Module > | |
std::reference_wrapper< engine_t > | createEngine (Module &module, std::string type, std::string instance, fhicl::ParameterSet const &pset, std::initializer_list< std::string > pnames) |
template<typename Module > | |
std::reference_wrapper< engine_t > | createEngine (Module &module, std::string type, fhicl::ParameterSet const &pset, std::string pname) |
template<typename Module > | |
std::reference_wrapper< engine_t > | createEngine (Module &module, std::string type, fhicl::ParameterSet const &pset, std::initializer_list< std::string > pnames) |
template<typename Module > | |
std::reference_wrapper< engine_t > | createEngine (Module &module, fhicl::ParameterSet const &pset, std::string pname) |
template<typename Module > | |
std::reference_wrapper< engine_t > | createEngine (Module &module, fhicl::ParameterSet const &pset, std::initializer_list< std::string > pnames) |
Register an existing engine | |
The life time of the engine is under user's control, while the seeding is managed by this service. | |
seed_t | registerEngine (SeedMaster_t::Seeder_t seeder, std::string instance="") |
Registers an existing engine with NuRandomService. More... | |
seed_t | registerEngine (SeedMaster_t::Seeder_t seeder, std::string instance, fhicl::ParameterSet const &pset, std::string pname) |
Registers an existing engine with NuRandomService. More... | |
seed_t | registerEngine (SeedMaster_t::Seeder_t seeder, std::string instance, fhicl::ParameterSet const &pset, std::initializer_list< std::string > pnames) |
seed_t | registerEngine (SeedMaster_t::Seeder_t seeder, fhicl::ParameterSet const &pset, std::string pname) |
seed_t | registerEngine (SeedMaster_t::Seeder_t seeder, fhicl::ParameterSet const &pset, std::initializer_list< std::string > pnames) |
Declare the presence of an engine | |
seed_t | declareEngine (std::string instance="") |
Declares the presence of an engine with a given instance name. More... | |
seed_t | declareEngine (std::string instance, fhicl::ParameterSet const &pset, std::string pname) |
Declares the presence of an engine with a given instance name. More... | |
seed_t | declareEngine (std::string instance, fhicl::ParameterSet const &pset, std::initializer_list< std::string > pnames) |
Declares the presence of an engine with a given instance name. More... | |
seed_t | declareEngine (fhicl::ParameterSet const &pset, std::string pname) |
Declares the presence of an engine with a default instance name. More... | |
seed_t | declareEngine (fhicl::ParameterSet const &pset, std::initializer_list< std::string > pnames) |
Declares the presence of an engine with a default instance name. More... | |
seed_t | defineEngine (SeedMaster_t::Seeder_t seeder, std::string instance={}) |
Defines a seeder for a previously declared engine. More... | |
seed_t | defineEngine (CLHEP::HepRandomEngine &engine, std::string instance={}) |
Defines a seeder for a previously declared engine. More... | |
Static Public Member Functions | |
static constexpr bool | isSeedValid (seed_t seed) |
Returns whether the specified seed is valid. More... | |
Static Public Attributes | |
static constexpr seed_t | InvalidSeed = SeedMaster_t::InvalidSeed |
An invalid seed. More... | |
Private Member Functions | |
seed_t | registerEngineID (EngineId const &id, SeedMaster_t::Seeder_t seeder=SeedMaster_t::Seeder_t()) |
Register an engine and seeds it with the seed from the master. More... | |
seed_t | defineEngineID (EngineId const &id, SeedMaster_t::Seeder_t seeder) |
Set the seeder of an existing engine. More... | |
bool | hasEngine (EngineId const &id) const |
Returns whether the specified engine is already registered. More... | |
seed_t | getSeed (EngineId const &) |
seed_t | getEventSeed (EngineId const &) |
seed_t | reseedInstance (EngineId const &id) |
Reseeds the specified engine instance in the current module. More... | |
void | reseedGlobal () |
Reseed all the global engines. More... | |
seed_t | prepareEngine (EngineId const &id, SeedMaster_t::Seeder_t seeder) |
Registers the engine ID into SeedMaster. More... | |
void | ensureValidState (bool bGlobal=false) const |
seed_t | querySeed (EngineId const &id) |
Query a seed from the seed master. More... | |
std::pair< seed_t, bool > | findSeed (EngineId const &id, fhicl::ParameterSet const &pset, std::initializer_list< std::string > pnames) |
void | freezeSeed (EngineId const &id, seed_t frozen_seed) |
Forces NuRandomService not to change the seed of the specified engine. More... | |
void | registerEngineAndSeeder (EngineId const &id, SeedMaster_t::Seeder_t seeder) |
Registers an engine and its seeder. More... | |
seed_t | seedEngine (EngineId const &id) |
Calls the seeder with the specified seed and engine ID. More... | |
void | preModuleConstruction (art::ModuleDescription const &md) |
void | postModuleConstruction (art::ModuleDescription const &) |
void | preModuleBeginRun (art::ModuleContext const &mc) |
void | postModuleBeginRun (art::ModuleContext const &) |
void | preProcessEvent (art::Event const &evt, art::ScheduleContext) |
void | preModule (art::ModuleContext const &mc) |
void | postModule (art::ModuleContext const &) |
void | postProcessEvent (art::Event const &, art::ScheduleContext) |
void | preModuleEndJob (art::ModuleDescription const &md) |
void | postModuleEndJob (art::ModuleDescription const &) |
void | postEndJob () |
void | reseedModule (std::string currentModule) |
Reseeds all the engines in the current module. More... | |
void | reseedModule () |
EngineId | qualify_engine_label (std::string moduleLabel, std::string instanceName) const |
Returns a fully qualified EngineId. More... | |
EngineId | qualify_engine_label (std::string instanceName="") const |
EngineId | qualify_global_engine (std::string instanceName="") const |
Static Private Member Functions | |
static bool | readSeedParameter (seed_t &seed, fhicl::ParameterSet const &pset, std::string pname) |
static bool | readSeedParameter (seed_t &seed, fhicl::ParameterSet const &pset, std::initializer_list< std::string > pnames) |
Private Attributes | |
SeedMaster_t | seeds |
Class managing the seeds. More... | |
NuRandomServiceHelper::ArtState | state |
int | verbosity = 0 |
Control the level of information messages. More... | |
bool | bPrintEndOfJobSummary = false |
print a summary at the end of job More... | |
An art service to assist in the distribution of guaranteed unique seeds to all engines within an art job.
NuRandomService centrally manages seeds for random generator engines.
The NuRandomService acts as an interface between art framework and the SeedMaster class.
The documentation is mantained in the SeedMaster class. The configuration of NuRandomService is exactly the same as SeedMaster's, and in art it's read from services.NuRandomService
. The following documentation describes features of NuRandomService that are built on top of SeedMaster to have a more convenient interaction within the art framework.
Before asking NuRandomService for its seed, an engine must be in some way registered. Once the engine is registered, its original seed can be queried again by calling getSeed()
methods.
Here "engine" means a class that is able to generate random numbers according to a flat distribution. Both art and NuRandomService are module-based, that means that the engines are in the context of a specific module instance, and different module instances have independent engines. That is the reason why you don't need to specify anything about the module when creating or obtaining a random engine, and it is also the reason why engines outside module context are not supported by the framework.
Each module can need more than one engine. A module can have any number of engines, and each of them is identified by an "instance name" that is unique within the module. Nonetheless, most modules need just one engine. In that case, a default instance name can be used (that is an empty string).
A "seeder" is a callable object (e.g. a function) that sets the seed of a certain engine. The seeder is expected to find out by its own which engine it has to seed, and fot that it is provided an engine ID.
Registration must happen in art module constructor, in one of the following ways:
createEngine()
methods) [discouraged]registerEngine()
methods)declareEngine()
and getSeed()
methods) The first method and, when a seeder or an engine is provided, also the second method, set the seed of the engine they register (see below). In the third case, it is generally the caller's responsibility to seed the engine. The registration of an engine which has been only declared can be "completed" by calling defineEngine()
to provide the actual seeder for that engine. The pair of calls declareEngine()
/defineEngine()
(or getSeed()
/defineEngine()
) is equivalent to a single call to registerEngine()
, with the added flexibility of having the seed for the engine already available before the registration is completed.The use of createEngine() class of function is discouraged and this function might be removed in the future, because of its non-clean use of module interfaces. The recommended approach is more prolix; here an example for an engine with a non-default instance name:
std::string const instanceName = "instanceName"; auto& Seeds = *(art::ServiceHandle<rndm::NuRandomService>()); // declare an engine; NuRandomService associates an (unknown) engine, in // the current module and an instance name, with a seed (returned) auto const seed = Seeds.declareEngine(instanceName); // now create the engine (for example, use art); seed will be set auto& engine = createEngine(seed, "HepJamesRandom", instanceName); // finally, complete the registration; seed will be set again Seeds.defineEngine(engine);
This is equivalent to the discouraged call
auto& Seeds = *(art::ServiceHandle<rndm::NuRandomService>()); Seeds.createEngine(*this, "HepJamesRandom", "instanceName");
Please read carefully the documentation of the method of your choice, since they have different requirements and apply to different usage patterns.
The registration must happen in the constructor of the module. That is because we don't want engines to be initialized in the middle of a job.
NuRandomService is able to set the seed of an engine when the engine is registered via either:
createEngine()
(creation of a new CLHEP engine)registerEngine()
(registration of an engine or a seeder function), if the registered seeder function is valid (non-null) or if a CLHEP engine is being registered (in which case the seeder is automatically created valid)defineEngine()
(registration of a seeder for an engine that was already declared), again if the seed is valid NuRandomService is not able to automatically set the seed of an engine if it was registered via either:declareEngine()
(declaration of the existence of an engine), that does not even require the engine to existgetSeed()
(query of a seed), when it (implicitly) declares an engine which had not been declared yetIf NuRandomService is able to set the seed, it will do so only once, as soon as it can. This means that if the policy allows the seed to be known immediately, the seed will be set on registration. In the case of a per-event policy that requires the presence of an event, the seed can be known only when the event is available, and NuRandomService will set the seed before the module the engine is associated with starts its main processing method (produce(), filter() or analyze()).
Currently, changing the seeder of an engine after the engine has been fully registered is not supported. As a consequence, changing the engine is also not supported.
Since only the seeder function is registered in NuRandomService, a seeder function that is flexible enough to change the engine it seeds may work around this limitation.
If necessary, the seed that NuRandomService has assigned to an engine can be requested by one of the following two calls:
art::ServiceHandle<NuRandomService>->getSeed(); art::ServiceHandle<NuRandomService>->getSeed("instanceName");
depending on whether the engine has a non-empty instance name, Note that this call implicitly "declares" the engine it refers to.
For most policies, the seed is set according to the configuration, once for all. In those cases, getSeed()
will always return the same value. If the policy prescribes different seeds at different times, the method returns the seed that is assigned to the engine at the time of the call.
Also note that the seed assigned by NuRandomService might not match the current seed of the engine, if:
A number of things must happen for an engine to correctly work with NuRandomService:
A recipe for creating a ROOT engine and let NuRandomService take care of its seeds is:
// create the engine; ROOT will set some (temporary) seed fRandom = std::make_unique<TRandom3>(); // declare the engine; NuRandomService associates its seeder, in // the current module and an instance name, with a seed (returned); // the seed is also set in the engine auto& Seeds = *(art::ServiceHandle<rndm::NuRandomService>()); Seeds.registerEngine(TRandomSeeder(fRandom), "instanceName");
Here fRandom
is supposed to be a member function of the module. The TRandomSeeder
object is an object that knows how to set the seed of the TRandom-derived ROOT generator passed as constructor argument. For an example of implementation, see the source code of NuRandomService.
NuRandomService (and SeedMaster, which the former relies upon) will decide which seed to give to each registered engine and, when possible (see above), will set that seed too.
All registration functions offer an extended signature to tell NuRandomService that if there is an explicitly configured seed, that should take presedence over the one automatically assigned by SeedMaster policy. This extended signature includes:
The typical use of this function is to read a parameter ("Seed" is the suggested name) from the configuration of the module. Note that this is in contrast with the location where NuRandomService seeds are normally configured, that is in the configuration of NuRandomService service itself. For example:
// within module construction: art::ServiceHandle<rndm::NuRandomService>()->registerEngine (engine, "instanceName", pset, { "Seed", "MySeed" });
Here NuRandomService will provide a seed only if it does not find in the parameter set pset
any of the specified configuration parameters (first "Seed", then "MySeed" in this example). In other words, if "Seed" exists, its value is used as seed, otherwise if "MySeed" exists, its value is used instead, and otherwise NuRandomService is given control on that seed. The exception is that if the specified seed is a "magic value", the InvalidSeed
(0
), it is interpreted as a request to ignore the parameter and use the service to get the seed. This is made as a quick way to remove the seed override from an existing FHiCL file with one line. Note that if NuRandomService does not get the control on the seed, policies that reseed on event-by-event basis will not act on the engine.
It is possible to have engines that are not associated with any module. If no module is current, an engine will be registered in a "global" context. This happens during service construction, and once the service construction phase is completed, no more global engines can be registered. Would one ever need to access the seed of such engine, a specific interface needs to be used: getGlobalSeed()
to get the configured seed at the beginning of the job, or getGlobalCurrentSeed()
to get the seed specific for the current event, if any. These are equivalent to the module context methods getSeed()
and getCurrentSeed()
.
The art service RandomNumberGenerator does not support the creation of module-independent engines. The ownership of each global engine is by the using service, as well as the management of engine's lifetime. After an engine has been instantiated, it can be registered with registerEngine()
. Likewise, a global engine can be declared first with declareEngine()
, then instantiated, and then optionally defined with defineEngine()
. This is completely analogous to the module-context engines. The only difference is that no createEngine()
interface is available for global engines. Whether these methods create a global or module engine depends only on the context they are called in.
NuRandomService does not manage the engine life in any way. If a service owns an engine, it also needs a way to access it, as nothing equivalent to RandomNumberGenerator's getEngine()
is provided. NuRandomService does manage the seeding of the registered engines, even the global ones. If the seed policy involves a event-dependent seed, all global engines are seeded together at the beginning of the event, before any module is executed. This mechanism relies on the fact that NuRandomService gets its preProcessEvent callback executed before the ones of the services that own any engine. This is guaranteed if the service constructors invoke NuRandomService before they register their callbacks.
For an example of usage, see GlobalEngineUserTestService service in the test suite. Here is an excerpt using a ROOT TRandom3 engine, that can be constructed without seed. In the service constructor, the code:
// create a new engine, that we own (engine be a class data member) engine = std::make_unique<TRandom3>(); auto seed = Seeds.registerEngine (rndm::NuRandomService::TRandomSeeder(engine.get()), "MyService"); // MyService callback registrations in the ActivityRegistry // should follow the first call to NuRandomService!
where rndm::NuRandomService::TRandomSeeder is a seeder class for TRandom engines (optionally provided in NuRandomService.h, and very easy to write). This excerpt creates and owns a TRandom3 engine, and then it registers it to NuRandomService, which immediately sets its seed and will take care of reseeding the engine at each event, should the policy require it. The service will access the engine as a data member, and should it need the seed it will use:
art::ServiceHandle<rndm::NuRandomService>()->getGlobalSeed("MyService");
Note that is a good idea to give the engine an instance name after the service name itself, since the instance name is global and it's the only thing distinguishing global engines, and name conflicts between different services may easily arise.
Definition at line 362 of file NuRandomService.h.
using rndm::NuRandomService::engine_t = CLHEP::HepRandomEngine |
Definition at line 365 of file NuRandomService.h.
type of random engine ID
Definition at line 369 of file NuRandomService.h.
Definition at line 364 of file NuRandomService.h.
type of object providing seeds
Definition at line 367 of file NuRandomService.h.
rndm::NuRandomService::NuRandomService | ( | const fhicl::ParameterSet & | , |
art::ActivityRegistry & | |||
) |
|
delete |
|
delete |
|
default |
std::reference_wrapper< NuRandomService::engine_t > rndm::NuRandomService::createEngine | ( | Module & | module, |
std::string | type, | ||
std::string | instance = "" |
||
) |
Creates an engine with RandomNumberGenerator service.
module | module who will own the new engine |
type | the type of engine |
instance | the name of the engine instance |
This method creates a new engine by calling RandomNumberGenerator::createEngine() with the seed from getSeed(). The meaning of the two parameters is the same as in that function, including the somehow inconvenient order of the arguments
Definition at line 997 of file NuRandomService.h.
std::reference_wrapper< NuRandomService::engine_t > rndm::NuRandomService::createEngine | ( | Module & | module | ) |
Definition at line 1013 of file NuRandomService.h.
|
inline |
Creates an engine with RandomNumberGenerator service.
module | module who will own the new engine |
type | the type of engine |
instance | the name of the engine instance |
pset | parameter set to read parameters from |
pname | name or names of the seed parameters |
This method creates a new engine by calling RandomNumberGenerator::createEngine() with the seed from getSeed(). The meaning of the two parameters is the same as in that function, including the somehow inconvenient order of the arguments
The engine seed is set. First, the seed is retrieved from the specified configuration, looking for the first of the parameters in pname that is available. If no parameter is found, the seed is obtained from NuRandomService.
Definition at line 546 of file NuRandomService.h.
std::reference_wrapper< NuRandomService::engine_t > rndm::NuRandomService::createEngine | ( | Module & | module, |
std::string | type, | ||
std::string | instance, | ||
fhicl::ParameterSet const & | pset, | ||
std::initializer_list< std::string > | pnames | ||
) |
Definition at line 1027 of file NuRandomService.h.
|
inline |
Definition at line 559 of file NuRandomService.h.
|
inline |
Definition at line 566 of file NuRandomService.h.
|
inline |
Definition at line 573 of file NuRandomService.h.
std::reference_wrapper< NuRandomService::engine_t > rndm::NuRandomService::createEngine | ( | Module & | module, |
fhicl::ParameterSet const & | pset, | ||
std::initializer_list< std::string > | pnames | ||
) |
Definition at line 1048 of file NuRandomService.h.
NuRandomService::seed_t rndm::NuRandomService::declareEngine | ( | std::string | instance = "" | ) |
Declares the presence of an engine with a given instance name.
instance | name of the instance of the engine (empty by default) |
The existence of an engine with the specified instance name is recorded, and a seed is assigned to it. The engine will be identified by the instance name and by context information (the current module).
Differently from createEngine() and registerEngine(), the actual existence of a engine is not required. It is up to the user to manage the engine, if any at all, including the seeding.
Definition at line 152 of file NuRandomService_service.cc.
|
inline |
Declares the presence of an engine with a given instance name.
instance | name of the instance of the engine |
pset | parameter set where to find a possible fixed seed request |
pname | the name of the parameter for the fixed seed request |
The existence of an engine with the specified instance name is recorded, and a seed is assigned to it. The engine will be identified by the instance name and by context information (the current module).
The preferred way to obtain the seed is from configuration. First, the seed is retrieved from the specified configuration, looking for the first of the parameters in pname that is available. If no parameter is found, the seed is obtained from NuRandomService.
Differently from createEngine() and registerEngine(), the actual existence of a engine is not required. It is up to the user to manage the engine, if any at all, including the seeding.
Definition at line 738 of file NuRandomService.h.
NuRandomService::seed_t rndm::NuRandomService::declareEngine | ( | std::string | instance, |
fhicl::ParameterSet const & | pset, | ||
std::initializer_list< std::string > | pnames | ||
) |
Declares the presence of an engine with a given instance name.
instance | name of the instance of the engine |
pset | parameter set where to find a possible fixed seed request |
pnames | name of the parameters for the fixed seed request |
This method provides the same function as declareEngine(std::string, fhicl::ParameterSet const&, std::string), but it can pick the seed from the first parameter among the ones in pset whose name is in pnames.
Definition at line 157 of file NuRandomService_service.cc.
|
inline |
Declares the presence of an engine with a default instance name.
pset | parameter set where to find a possible fixed seed request |
pname | the name of the parameter for the fixed seed request |
This method provides the same function as declareEngine(std::string, fhicl::ParameterSet const&, std::string), but it gives the engine a empty instance name.
Definition at line 770 of file NuRandomService.h.
|
inline |
Declares the presence of an engine with a default instance name.
pset | parameter set where to find a possible fixed seed request |
pnames | name of the parameters for the fixed seed request |
This method provides the same function as declareEngine(std::string, fhicl::ParameterSet const&, std::string), but it can pick the seed from the first parameter among the ones in pset whose name is in pnames. Also, it gives the engine a empty instance name.
Definition at line 786 of file NuRandomService.h.
NuRandomService::seed_t rndm::NuRandomService::defineEngine | ( | SeedMaster_t::Seeder_t | seeder, |
std::string | instance = {} |
||
) |
Defines a seeder for a previously declared engine.
seeder | seeder associated to the engine |
instance | name of engine instance (default: empty) |
The seeder is the same object as in registerEngine(). This function can be used to finalise the declaration of an engine. If the engine was just declared with declareEngine() (as opposed to registered with registerEngine() or created with createEngine()), "defining" the engine will hook it to NuRandomService, that will take care of setting seeds automatically when needed. This step is not mandatory, but no automatic seeding will happen if it is omitted.
Definition at line 166 of file NuRandomService_service.cc.
|
inline |
Defines a seeder for a previously declared engine.
instance | name of engine instance |
engine | CLHEP engine to be associated to the instance |
This method operates on the default engine instance and performs the same operations as defineEngine(std::string, Seeder_t). A seeder is internally created for the CLHEP random engine.
Definition at line 825 of file NuRandomService.h.
|
private |
Set the seeder of an existing engine.
Definition at line 183 of file NuRandomService_service.cc.
|
private |
Definition at line 206 of file NuRandomService_service.cc.
|
private |
Helper to retrieve a seed including configuration
Definition at line 113 of file NuRandomService_service.cc.
Forces NuRandomService not to change the seed of the specified engine.
Definition at line 286 of file NuRandomService_service.cc.
|
inline |
Returns the last computed seed for specified engine of current module.
Definition at line 447 of file NuRandomService.h.
|
inline |
Returns the last computed seed for the default engine of current module.
Definition at line 451 of file NuRandomService.h.
|
inline |
Returns the last computed seed for the specified global engine.
Definition at line 455 of file NuRandomService.h.
NuRandomService::seed_t rndm::NuRandomService::getGlobalSeed | ( | std::string | instanceName | ) |
Returns a seed for the global engine with specified instance name.
instanceName | name of the engine instance |
A "global" engine is not bound to a specific execution context. The only context NuRandomService is aware of is the module, so this translates into engines that are not bound to any module. To instruct NuRandomService to ignore the current context (that may be a running module, or no running module at all), getGlobalSeed()
is used instead of getSeed()
, that will consider the context and in fact consider the absence of context an error.
The engine needs to have been registered before, in any of the supported ways. If it has not, this call will declare it with declareEngine() and no further registration will be allowed.
While this method can be called at any time, the registration of an engine can happen only at construction time, and it will make the call to this method fail if it is called at any other time.
Definition at line 82 of file NuRandomService_service.cc.
NuRandomService::seed_t rndm::NuRandomService::getSeed | ( | std::string | instanceName | ) |
Returns a seed for the engine with specified instance name.
instanceName | name of the engine instance |
The seed for an engine in the context of the current module is returned. If you need the seed for an engine outside that context, use getGlobalSeed()
instead.
The engine needs to have been registered before, in any of the supported ways. If it has not, this call will declare it with declareEngine() and no further registration will be allowed.
While this method can be called at any time, the registration of an engine can happen only at construction time, and it will make the call to this method fail if it is called at any other time.
Definition at line 76 of file NuRandomService_service.cc.
NuRandomService::seed_t rndm::NuRandomService::getSeed | ( | ) |
Returns a seed for the engine with default instance name.
This method is equivalent to getSeed(std::string) with an empty instance name.
Definition at line 70 of file NuRandomService_service.cc.
|
private |
Definition at line 91 of file NuRandomService_service.cc.
Returns whether the specified engine is already registered.
Definition at line 900 of file NuRandomService.h.
Returns whether the specified seed is valid.
Definition at line 385 of file NuRandomService.h.
|
delete |
|
delete |
|
private |
Definition at line 371 of file NuRandomService_service.cc.
|
private |
Definition at line 352 of file NuRandomService_service.cc.
|
private |
Definition at line 327 of file NuRandomService_service.cc.
|
private |
Definition at line 318 of file NuRandomService_service.cc.
|
private |
Definition at line 367 of file NuRandomService_service.cc.
|
private |
Definition at line 357 of file NuRandomService_service.cc.
|
private |
Definition at line 341 of file NuRandomService_service.cc.
|
private |
Definition at line 322 of file NuRandomService_service.cc.
|
private |
Definition at line 313 of file NuRandomService_service.cc.
|
private |
Definition at line 362 of file NuRandomService_service.cc.
|
private |
Registers the engine ID into SeedMaster.
Definition at line 292 of file NuRandomService_service.cc.
|
private |
Definition at line 331 of file NuRandomService_service.cc.
|
inline |
Prints known (EngineId,seed) pairs.
Definition at line 833 of file NuRandomService.h.
|
inline |
Prints to the framework Info logger.
Definition at line 837 of file NuRandomService.h.
|
private |
Returns a fully qualified EngineId.
Definition at line 62 of file NuRandomService_service.cc.
|
private |
Definition at line 66 of file NuRandomService_service.cc.
|
inlineprivate |
Definition at line 935 of file NuRandomService.h.
|
private |
Query a seed from the seed master.
Definition at line 108 of file NuRandomService_service.cc.
|
inlinestaticprivate |
Reads the seed from the first of the specified parameters available
Definition at line 943 of file NuRandomService.h.
|
staticprivate |
Definition at line 300 of file NuRandomService_service.cc.
NuRandomService::seed_t rndm::NuRandomService::registerEngine | ( | SeedMaster_t::Seeder_t | seeder, |
std::string | instance = "" |
||
) |
Registers an existing engine with NuRandomService.
seeder | function used to set the seed of the existing engine |
instance | name of the engine |
This function works similarly to createEngine(), but it uses an existing engine instead of creating a new one by RandomNumberGenerator service. The seeder function must be provided for the service to be of any use: registerEngine() will set the seed immediately, and the seeder function will be used to set the seed for policies that do that on each event. The instance name must also be unique, since for NuRandomService purposes the registered engine is no different from any other, created by RandomNumberGenerator or not.
Three standard functions are provided as seeders, for use with RandomNumberGenerator engines (RandomNumberGeneratorSeeder()), with a CLHEP::HepRandomEngine (CLHEPengineSeeder class) and with ROOT's TRandom (TRandomSeeder class). Note that CLHEP and ROOT classes are not compiled in NuRandomService by default, and the recommendation is to take their implementation as an example and create your own after them). Any seeder function with the prototype of NuRandomService::Seeder_t:
void Seeder(EngineId const&, seed_t);
or a functor with
void operator() (EngineId const&, seed_t);
can be used as seeder.
Definition at line 132 of file NuRandomService_service.cc.
|
inline |
Registers an existing engine with NuRandomService.
seeder | function used to set the seed of the existing engine |
instance | name of the engine |
pset | parameter set to read parameters from |
pname | name or names of the seed parameters |
These functions work similarly to registerEngine(), but the preferred way to obtain the seed is from configuration. First, the seed is retrieved from the specified configuration, looking for the first of the parameters in pname that is avaialble. If no parameter is found, the seed is obtained from NuRandomService.
Definition at line 648 of file NuRandomService.h.
NuRandomService::seed_t rndm::NuRandomService::registerEngine | ( | SeedMaster_t::Seeder_t | seeder, |
std::string | instance, | ||
fhicl::ParameterSet const & | pset, | ||
std::initializer_list< std::string > | pnames | ||
) |
Definition at line 138 of file NuRandomService_service.cc.
|
inline |
Definition at line 657 of file NuRandomService.h.
|
inline |
Definition at line 662 of file NuRandomService.h.
|
inline |
Registers an existing CLHEP engine with NuRandomService.
engine | a reference to the CLHEP random generator engine |
instance | name of the engine |
pset | parameter set to read parameters from |
pname | name or names of the seed parameters |
The specified engine is not managed. It may be owned by RandomNumberGenerator service.
The engine is expected to be valid as long as this service performs reseeding.
Definition at line 685 of file NuRandomService.h.
|
inline |
Definition at line 687 of file NuRandomService.h.
|
private |
Registers an engine and its seeder.
Definition at line 271 of file NuRandomService_service.cc.
|
private |
Register an engine and seeds it with the seed from the master.
Definition at line 173 of file NuRandomService_service.cc.
|
private |
Reseed all the global engines.
Definition at line 261 of file NuRandomService_service.cc.
|
private |
Reseeds the specified engine instance in the current module.
instance | the name of the engine instance |
Definition at line 234 of file NuRandomService_service.cc.
|
private |
Reseeds all the engines in the current module.
Definition at line 251 of file NuRandomService_service.cc.
|
private |
Definition at line 258 of file NuRandomService_service.cc.
Calls the seeder with the specified seed and engine ID.
Definition at line 969 of file NuRandomService.h.
|
private |
print a summary at the end of job
Definition at line 887 of file NuRandomService.h.
|
static |
An invalid seed.
Definition at line 372 of file NuRandomService.h.
|
private |
Class managing the seeds.
Definition at line 872 of file NuRandomService.h.
|
private |
Helper to track state of art.
The state is updated by NuRandomService itself, and therefore knows only about what it is notified about, when it is notified about. For example, service construction phase may start before the service was even constructed, but the state will be updated only on NuRandomService construction.
Definition at line 883 of file NuRandomService.h.
|
private |
Control the level of information messages.
Definition at line 886 of file NuRandomService.h.