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