dump_opdetdivrec.fcl
Go to the documentation of this file.
1 #
2 # File: dump_opdetdivrecs.fcl
3 # Purpose: Dump on screen opdetdivrecs content
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: March 30, 2016
6 # Version: 1.0
7 #
8 # Service dependencies:
9 # - message facility
10 #
11 
12 process_name: DumpOpDetDivRecs
13 
14 services: {
15 
16  message: {
17  # debugModules: [ "*" ]
18  destinations: {
19 
20  # grab all the "DumpOpDetDivRecs" messages and put them in DumpOpDetDivRecs.log
21  DumpOpDetDivRecs: {
22  append: false
23  categories: {
24  DumpOpDetDivRecs: { limit: -1 }
25  fileAction: { limit: 0 } # RootInput
26  TimeTracker: { limit: 0 }
27  MemoryTracker: { limit: 0 }
28  default: { limit: 0 }
29  }
30  filename: "DumpOpDetDivRecs.log"
31  threshold: "INFO"
32  type: "file"
33  } # DumpOpDetDivRecs
34 
35  LogStandardOut: {
36  categories: {
37  AnaBaseDefaultCtor: { limit: 0 }
38  GeometryBadInputPoint: {
39  limit: 5
40  timespan: 1000
41  }
42  RecoBaseDefaultCtor: { limit: 0 }
43  DumpOpDetDivRecs: { limit: 0 }
44  default: {}
45  }
46  threshold: "WARNING"
47  type: "cout"
48  } # LogStandardOut
49 
50  } # destinations
51  } # message
52 } # services
53 
54 
55 source: {
56  module_type: RootInput
57 } # source
58 
59 
60 physics: {
61  producers:{}
62  filters: {}
63  analyzers: {
64  dumpopdetdivrecs: {
65  module_label: dumpopdetdivrecs
66  module_type: DumpOpDetDivRecs
67 
68  # output category ("OutputCategory" by default), useful for filtering (see above)
69  OutputCategory: "DumpOpDetDivRecs"
70 
71  # specify the label of the sim::opdetdivrecs data product (or producer)
72  InputOpDetDivRecs: "opdigi"
73 
74  } # dumpopdetdivrecs
75  } # analyzers
76 
77  dumpers: [ dumpopdetdivrecs ]
78 
79  trigger_paths: []
80  end_paths: [ dumpers ]
81 
82 } # physics