timingreference_test.fcl
Go to the documentation of this file.
1 #
2 # File: timingreference_test.fcl
3 # Purpose: Test ComputePi module, meant to assess a timing reference
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: August 19th, 2014
6 #
7 # Services:
8 # - art standard services (including Timing)
9 #
10 
11 process_name: TimingReference
12 
13 services: {
14  TimeTracker: {}
15 }
16 
17 source: {
18  module_type: EmptyEvent
19  maxEvents: 10 # Number of events to create
20  firstRun: 1 # Run number to use for this file
21  firstEvent: 1 # number of first event in the file
22 } # source
23 
24 physics: {
25 
26  producers: {}
27 
28  analyzers: {
29  timingref: {
30  module_type: "ComputePi"
31  module_label: "timingref"
32 
33  # number of thousand samples to be taken (default 10000, i.e. 10M samples)
34  #
35  # virtual machine uboonegpvm06 (on August 19, 2014) with 4600 BogoMIPS
36  # ran with 50000k samples/event and it took 0.932" with a RMS of ~4%
37  #
38  Ksamples: 50000
39 
40  # the seed of the random number generator;
41  # Seed: 314159
42 
43  # verbosity will print the value of pi on every event (always the same!)
44  # this is meant to be false for normal operations
45  Verbose: true
46 
47  } # timingref
48  } # analyzers
49 
50  analyze: [ timingref ]
51 
52  trigger_paths: []
53  end_paths: [ analyze ]
54 } # physics