dump_dunedphase10kt_workspace_channelmap.fcl
Go to the documentation of this file.
1 #
2 # File: dump_dunedphase10kt_workspace_channelmap.fcl
3 # Purpose: dumps the full channel mapping of the DUNE Dual Phase Far Detector
4 # (workspace geometry)
5 # Author: Gianluca Petrillo (petrillo@fnal.gov)
6 # Date: May 2, 2017
7 # Version: 1.0
8 #
9 # Dependencies:
10 # - geometry service
11 #
12 
13 #include "geometry_dune.fcl"
14 
15 process_name: DumpChannelMap
16 
17 services: {
18 
19  Geometry: @local::dunedphase10kt_workspace_geo
20  ExptGeoHelperInterface: @local::dune_geometry_helper
21  GeometryConfigurationWriter: {}
22 
23  message: {
24  destinations: {
25  LogChannelMap: {
26  type: "file"
27  filename: "dunedphase10kt_workspace_channelmap.txt"
28  append: false
29  threshold: "INFO"
30  categories:{
31  default: { limit: 0 }
32  DumpChannelMap: { limit: -1 }
33  }
34  }
35  LogStandardOut: {
36  type: "cout"
37  threshold: "INFO"
38  categories:{
39  default:{ limit: -1 }
40  RecoBaseDefaultCtor: { limit: 0 }
41  AnaBaseDefaultCtor: { limit: 0 }
42  GeometryBadInputPoint: { limit: 5 timespan: 1000}
43  }
44  }
45  LogStandardError: {
46  type: "cerr"
47  threshold: "ERROR"
48  categories:{
49  default:{ }
50  }
51  }
52  } # destinations
53  } # message
54 } # services
55 
56 source: {
57  module_type: EmptyEvent
58  maxEvents: 1 # Number of events to create
59 }
60 
61 outputs: { }
62 
63 physics: {
64 
65  analyzers: {
66  dumpchannelmap: {
67  module_type: "DumpChannelMap"
68  module_label: "dumpchannelmapgeotest"
69 
70  ChannelToWires: true
71  WireToChannel: true
72 
73  OutputCategory: DumpChannelMap
74 
75  } # dumpchannelmap
76  } # analyzers
77 
78  ana: [ dumpchannelmap ]
79 
80  trigger_paths: [ ]
81  end_paths: [ ana ]
82 
83 } # physics
84