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_standard.fcl"
8 
9 process_name: testGeo
10 
11 services: {
12 
13  GeometryGAr: @local::standard_geo
14  ExptGeoHelperInterface: @local::standard_geometry_helper
15 
16  message: {
17  destinations: {
18  LogDebugFile: {
19  type: "file"
20  filename: "geometry_gartpcdetector.txt"
21  append: false
22  threshold: "INFO"
23  categories:{
24  default: { limit: 0 }
25  GeometryTest: { 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  geotest: {
60  module_type: "GeometryTest"
61  RunTests: [
62  # run the default test suite (actually unnecessary):
63  "@default"
64  ]
65  } # geotest
66  }
67 
68  ana: [ geotest ]
69 
70  trigger_paths: [ ]
71  end_paths: [ ana ]
72 }
73 
74 # Uncomment if you want to check for overlaps
75 # physics.analyzers.geotest.CheckForOverlaps: true
76