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