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