dump_tracks.fcl
Go to the documentation of this file.
1 #
2 # File: DumpTracks.fcl
3 # Purpose: Dump on screen track content
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: October 16th, 2014
6 # Version: 1.0
7 #
8 # Service dependencies:
9 # - message facility
10 #
11 
12 process_name: DumpTracks
13 
14 services: {
15 
16  message: {
17  # debugModules: [ "*" ]
18  destinations: {
19 
20  # grab all the "DumpTracks" messages and put them in DumpTracks.log
21  DumpTracks: {
22  append: false
23  categories: {
24  DumpTracks: { limit: -1 }
25  default: { limit: 0 }
26  }
27  filename: "DumpTracks.log"
28  threshold: "INFO"
29  type: "file"
30  } # DumpTracks
31 
32  LogStandardOut: {
33  categories: {
34  AnaBaseDefaultCtor: { limit: 0 }
35  GeometryBadInputPoint: {
36  limit: 5
37  timespan: 1000
38  }
39  RecoBaseDefaultCtor: { limit: 0 }
40  DumpTracks: { 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  dumptracks: {
63  module_label: dumptracks
64  module_type: DumpTracks
65 
66  # output category ("DumpTracks" by default), useful for filtering (see above)
67  OutputCategory: "DumpTracks"
68  # approximate number of way point printed
69  WayPoints: 10
70 
71  # specify the label of the recob::Track producer
72  TrackModuleLabel: "trackkalmanhit"
73 
74  # print the number of associated hits? (default: true)
75  # HitAssociations: true
76  # print the index of associated hits? (default: false)
77  # PrintHits: true
78  # print the number of associated space points? (default: true)
79  # SpacePointAssociations: true
80  # print the index of associated space points? (default: false)
81  # PrintSpacePoints: true
82  # print the number of associated particle-flow particles? (default: true)
83  # ParticleAssociations: true
84  # print the index of associated particle-flow particles? (default: false)
85  # PrintParticles: true
86  } # dumptracks
87  } # analyzers
88 
89  ana: [ dumptracks ]
90 
91  trigger_paths: []
92  end_paths: [ ana ]
93 } # physics