dump_rawdigits.fcl
Go to the documentation of this file.
1 #
2 # File: dump_digits.fcl
3 # Purpose: Dump on screen raw digit content.
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: January 14th, 2015
6 # Version: 1.1
7 #
8 # Service dependencies:
9 # - message facility
10 #
11 # Changes:
12 # 20150114 (petrillo@fnal.gov) [v1.0]
13 # first version, from larevt/CalData/dump_good_wires.fcl
14 # 20170404 (petrillo@fnal.gov) [v1.1]
15 # removed configuration for filtering
16 #
17 
18 process_name: DumpRawDigits
19 
20 services: {
21  message: {
22  # debugModules: [ "*" ]
23  destinations: {
24 
25  # grab all the "DumpDigits" messages and put them in DumpRawDigits.log
26  LogDigits: {
27  append: false
28  categories: {
29  DumpDigits: { limit: -1 }
30  default: { limit: 0 }
31  }
32  filename: "DumpRawDigits.log"
33  threshold: "INFO"
34  type: "file"
35  } # LogDigits
36 
37  LogStandardOut: {
38  categories: {
39  DumpDigits: { limit: 0 }
40  default: {}
41  }
42  threshold: "WARNING"
43  type: "cout"
44  } # LogStandardOut
45 
46  } # destinations
47  } # message
48 } # services
49 
50 
51 source: {
52  module_type: RootInput
53  maxEvents: -1 # number of events to read
54 } # source
55 
56 
57 physics: {
58  producers:{}
59  filters: {}
60  analyzers: {
61  dumpdigits: {
62  module_label: dumpdigits
63  module_type: DumpRawDigits
64 
65  # specify the label of the raw::RawDigit producer
66  # in the comment, default is reported
67  # DetSimModuleLabel: "daq"
68 
69  # output category ("DumpDigits" by default), useful for filtering (see above)
70  OutputCategory: "DumpDigits"
71 
72  # set DigitsPerLine to 0 to suppress the output of the wire content
73  DigitsPerLine: 20
74 
75  # set the pedestal to be subtracted to all the digits (default: 0)
76  Pedestal: 2048
77 
78  } # dumpdigits
79  } # analyzers
80 
81  dumpers: [ dumpdigits ]
82 
83  trigger_paths: []
84  end_paths: [ dumpers ]
85 
86 } # physics