dump_clusters.fcl
Go to the documentation of this file.
1 #
2 # File: DumpClusters.fcl
3 # Purpose: Dump on screen cluster content
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: August 11th, 2014
6 # Version: 1.0
7 #
8 # Service dependencies:
9 # - message facility
10 #
11 
12 process_name: DumpClusters
13 
14 services: {
15 
16  message: {
17  # debugModules: [ "*" ]
18  destinations: {
19 
20  # grab all the "DumpClusters" messages and put them in DumpClusters.log
21  DumpClusters: {
22  append: false
23  categories: {
24  DumpClusters: { limit: -1 }
25  default: { limit: 0 }
26  }
27  filename: "DumpClusters.log"
28  threshold: "INFO"
29  type: "file"
30  } # DumpClusters
31 
32  LogStandardOut: {
33  categories: {
34  AnaBaseDefaultCtor: { limit: 0 }
35  GeometryBadInputPoint: {
36  limit: 5
37  timespan: 1000
38  }
39  RecoBaseDefaultCtor: { limit: 0 }
40  DumpClusters: { limit: 0 }
41  default: {}
42  }
43  threshold: "WARNING"
44  type: "cout"
45  } # LogStandardOut
46 
47  } # destinations
48  } # message
49 } # services
50 
51 
52 source: {
53  module_type: RootInput
54  maxEvents: -1 # number of events to read
55 } # source
56 
57 
58 physics: {
59  producers:{}
60  filters: {}
61  analyzers: {
62  dumpclusters: {
63  module_label: dumpclusters
64  module_type: DumpClusters
65 
66  # output category ("DumpClusters" by default), useful for filtering (see above)
67  OutputCategory: "DumpClusters"
68  # set HitsPerLine to 0 to suppress the output of the cluster hits
69  HitsPerLine: 20
70 
71  # specify the label of the recob::Cluster and recob::Hit producers
72  # (the latter is currently unused); in the comments, defaults are reported
73  ClusterModuleLabel: "fuzzycluster"
74  # HitModuleLabel: "gaushit"
75 
76  } # dumpclusters
77  } # analyzers
78 
79  ana: [ dumpclusters ]
80 
81  trigger_paths: []
82  end_paths: [ ana ]
83 } # physics