seedservice_dune.fcl
Go to the documentation of this file.
1 #
2 # File: seedservice_dune.fcl
3 # Desc: custom configurations of NuRandomService for DUNE
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: February 13th, 2015
6 # Version: 1.0
7 #
8 # The default configuration is the "random" policy, that defies the goal of the
9 # seed service altogether.
10 #
11 # Changes:
12 # 13022015 (petrillo@fnal.gov) [v1.0]
13 # first version; not many choices here
14 #
15 #
16 
17 #include "seedservice.fcl"
18 
19 BEGIN_PROLOG
20 
21 #
22 # the random policy extracts unpredictable, random seeds in a way similar to the
23 # behaviour that existed before NuRandomService.
24 # You don't want this for production.
25 #
26 dune_seedservice: @local::random_NuRandomService # from seedservice.fcl
27 
28 dune_prod_seedservice: #Similar to per_event_NuRandomService
29 {
30  # print into the log all seeds at the end of the job
31  endOfJobSummary: true
32 
33  # policy: perEvent
34  # on each event, the seed is computed from event information
35  policy: "perEvent"
36 }
37 
38 END_PROLOG