dump_seeds.fcl
Go to the documentation of this file.
1 #
2 # File: dump_seeds.fcl
3 # Purpose: Dump on screen seed content
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: February 28, 2017
6 # Version: 1.0
7 #
8 # Service dependencies:
9 # - message facility
10 #
11 
12 process_name: DumpSeeds
13 
14 services: {
15 
16  message: {
17  # debugModules: [ "*" ]
18  destinations: {
19 
20  # grab all the "DumpTracks" messages and put them in DumpTracks.log
21  DumpSeeds: {
22  append: false
23  categories: {
24  DumpSeeds: { limit: -1 }
25  default: { limit: 0 }
26  }
27  filename: "DumpSeeds.log"
28  threshold: "INFO"
29  type: "file"
30  } # DumpSeeds
31 
32  LogStandardOut: {
33  categories: {
34  RecoBaseDefaultCtor: { limit: 0 }
35  DumpSeeds: { limit: 0 }
36  default: {}
37  }
38  threshold: "WARNING"
39  type: "cout"
40  } # LogStandardOut
41 
42  } # destinations
43  } # message
44 } # services
45 
46 
47 source: {
48  module_type: RootInput
49  maxEvents: -1 # number of events to read
50 } # source
51 
52 
53 physics: {
54  producers:{}
55  filters: {}
56  analyzers: {
57  dumpseeds: {
58  module_label: dumpseeds
59  module_type: DumpSeeds
60 
61  # specify the label of the recob::Track producer
62  SeedModuleLabel: "cctrack"
63 
64  # output category ("DumpSeeds" by default), useful for filtering (see above)
65  # OutputCategory: "DumpSeeds"
66 
67  # print all real numbers in base 16, to check all their bits
68  # PrintHexFloats: false
69 
70  } # dumpseeds
71  } # analyzers
72 
73  dumpers: [ dumpseeds ]
74 
75  trigger_paths: []
76  end_paths: [ dumpers ]
77 } # physics
78