test_geometry_iterator_loop.fcl
Go to the documentation of this file.
1 #
2 # Geometry iterators test module on "generic" LArTPC MicroBooNE detector geometry
3 #
4 # Version: 1.1
5 #
6 
7 #include "geometry_lartpcdetector.fcl"
8 
9 process_name: testGeoIter
10 
11 services: {
12 
13  @table::lartpcdetector_geometry_services
14 
15  message: {
16  destinations: {
17  LogDebugFile: {
18  type: "file"
19  filename: "debug.log"
20  append: false
21  threshold: "DEBUG"
22  categories: {
23  default: { limit: -1 }
24  }
25  }
26  LogStandardOut: {
27  type: "cout"
28  threshold: "INFO"
29  categories: {
30  default: { limit: -1 }
31  RecoBaseDefaultCtor: { limit: 0 }
32  AnaBaseDefaultCtor: { limit: 0 }
33  GeometryBadInputPoint: { limit: 5 timespan: 1000}
34  }
35  }
36  LogStandardError: {
37  type: "cerr"
38  threshold: "ERROR"
39  categories:{
40  default:{ }
41  }
42  }
43  }
44  }
45 }
46 
47 source: {
48  module_type: EmptyEvent
49  maxEvents: 1 # Number of events to create
50 }
51 
52 outputs: { }
53 
54 physics: {
55 
56  analyzers: {
57  geoitertest: {
58  module_type: "GeometryIteratorLoopTest"
59  }
60  }
61 
62  ana: [ geoitertest ]
63 
64  trigger_paths: [ ]
65  end_paths: [ ana ]
66 }
67