dump_wires.fcl
Go to the documentation of this file.
1 #
2 # File: dump_wires.fcl
3 # Purpose: Dump on screen wire content.
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: December 17th, 2014
6 # Version: 1.2
7 #
8 # Service dependencies
9 # - message facility
10 #
11 # Changes:
12 # 20141217 (petrillo@fnal.gov) [v1.0]
13 # added the explicit configuration of the new parameter IgnoreFilters
14 # 20150114 (petrillo@fnal.gov) [v1.1]
15 # geometry commented out as it is not used
16 # 20170404 (petrillo@fnal.gov) [v1.2]
17 # updated configuration for the new DumpWires (does not filter wires)
18 #
19 
20 process_name: DumpWires
21 
22 services: {
23 
24  message: {
25  # debugModules: [ "*" ]
26  destinations: {
27 
28  # grab all the "DumpWires" messages and put them in DumpWires.log
29  LogWires: {
30  append: false
31  categories: {
32  DumpWires: { limit: -1 }
33  default: { limit: 0 }
34  }
35  filename: "DumpWires.log"
36  threshold: "INFO"
37  type: "file"
38  } # LogWires
39 
40  LogStandardOut: {
41  categories: {
42  DumpWires: { limit: 0 }
43  default: {}
44  }
45  threshold: "WARNING"
46  type: "cout"
47  } # LogStandardOut
48 
49  } # destinations
50  } # message
51 } # services
52 
53 
54 source: {
55  module_type: RootInput
56  maxEvents: -1 # number of events to read
57 } # source
58 
59 
60 physics: {
61  producers:{}
62  filters: {}
63  analyzers: {
64  dumpwires: {
65  module_label: dumpwires
66  module_type: DumpWires
67 
68  # specify the label of the recob::Wire producer
69  # CalWireModuleLabel: "caldata"
70 
71  # output category ("DumpWires" by default), useful for filtering (see above)
72  OutputCategory: "DumpWires"
73 
74  # set DigitsPerLine to 0 to suppress the output of the wire content
75  DigitsPerLine: 20
76 
77  } # dumpwires
78  } # analyzers
79 
80  dumpers: [ dumpwires ]
81 
82  trigger_paths: []
83  end_paths: [ dumpers ]
84 
85 } # physics