test_geometry.fcl
Go to the documentation of this file.
1 #
2 # Geometry test module on "generic" LArTPC detector geometry
3 #
4 # Version: 1.1
5 #
6 
7 #include "geometry_lartpcdetector.fcl"
8 
9 process_name: testGeo
10 
11 services: {
12 
13  @table::lartpcdetector_geometry_services
14 
15  message: {
16  destinations: {
17  LogDebugFile: {
18  type: "file"
19  filename: "geometry_lartpcdetector.txt"
20  append: false
21  threshold: "INFO"
22  categories:{
23  default: { limit: 0 }
24  GeometryTest: { limit: -1 }
25  }
26  }
27  LogStandardOut: {
28  type: "cout"
29  threshold: "INFO"
30  categories:{
31  default:{ limit: -1 }
32  RecoBaseDefaultCtor: { limit: 0 }
33  AnaBaseDefaultCtor: { limit: 0 }
34  GeometryBadInputPoint: { limit: 5 timespan: 1000}
35  }
36  }
37  LogStandardError: {
38  type: "cerr"
39  threshold: "ERROR"
40  categories:{
41  default:{ }
42  }
43  }
44  }
45  }
46 }
47 
48 source: {
49  module_type: EmptyEvent
50  maxEvents: 1 # Number of events to create
51 }
52 
53 outputs: { }
54 
55 physics: {
56 
57  analyzers: {
58  geotest: {
59  module_type: "GeometryTest"
60  RunTests: [
61  # run the default test suite (actually unnecessary):
62  "@default",
63  # in addition (overriding the default): print wires
64  "+PrintWires"
65  ]
66  } # geotest
67  }
68 
69  ana: [ geotest ]
70 
71  trigger_paths: [ ]
72  end_paths: [ ana ]
73 }
74 
75 # Uncomment if you want to check for overlaps
76 # physics.analyzers.geotest.CheckForOverlaps: true
77