dump_chargedspacepoints.fcl
Go to the documentation of this file.
1 #
2 # File: dump_chargedspacepoints.fcl
3 # Purpose: Dump on screen space points associated with charge.
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: December 22nd, 2017
6 # Version: 1.0
7 #
8 # Service dependencies:
9 # - message facility
10 #
11 
12 process_name: DumpCharge
13 
14 services: {
15 
16  message: {
17  # debugModules: [ "*" ]
18  destinations: {
19 
20  # grab all the "DumpChargedSpacePoints" messages and put them in DumpChargedSpacePoints.log
21  DumpChargedSpacePoints: {
22  append: false
23  categories: {
24  DumpChargedSpacePoints: { limit: -1 }
25  default: { limit: 0 }
26  }
27  filename: "DumpChargedSpacePoints.log"
28  threshold: "INFO"
29  type: "file"
30  } # DumpTracks
31 
32  LogStandardOut: {
33  categories: {
34  DumpChargedSpacePoints: { limit: 0 }
35  default: {}
36  }
37  threshold: "WARNING"
38  type: "cout"
39  } # LogStandardOut
40 
41  } # destinations
42  } # message
43 } # services
44 
45 
46 source: {
47  module_type: RootInput
48  maxEvents: -1 # number of events to read
49 } # source
50 
51 
52 physics: {
53  producers: {}
54  filters: {}
55  analyzers: {
56  dumpchargedspacepoints: {
57  module_type: DumpChargedSpacePoints
58 
59  OutputCategory: "DumpChargedSpacePoints"
60 
61  # tag of the recob::SpacePoint and recob::PointCharge data products
62  SpacePointLabel: reco3d
63 
64  } # dumpchargedspacepoints
65  } # analyzers
66 
67  dumpers: [ dumpchargedspacepoints ]
68 
69  trigger_paths: []
70  end_paths: [ dumpers ]
71 } # physics