test_geometries.fcl
Go to the documentation of this file.
1 #
2 # File: test_geometries.fcl
3 # Purpose: Service configuration settings for geometry information check tests.
4 # Author: Gianluca Petrillo (petrillo@slac.stanford.edu)
5 # Date: November 11, 2020
6 #
7 # Two "alternative" geometries are provided (they just differ by their name):
8 #
9 # * `test_geometry_check_services_A`
10 # * `test_geometry_check_services_B`
11 #
12 # It also provides a `messages` service configuration for debugging.
13 #
14 
15 #include "geometry_lartpcdetector.fcl"
16 
17 BEGIN_PROLOG
18 
19 # ------------------------------------------------------------------------------
20 test_geometry_check_services_A: {
21 
22  @table::lartpcdetector_geometry_services
23 
24 } # test_geometry_check_services_A
25 
26 test_geometry_check_services_A.Geometry.Name: "A"
27 
28 
29 # ------------------------------------------------------------------------------
30 test_geometry_check_services_B: {
31 
32  @table::lartpcdetector_geometry_services
33 
34 } # test_geometry_check_services_B
35 
36 test_geometry_check_services_B.Geometry.Name: "B"
37 
38 
39 # ------------------------------------------------------------------------------
40 message_services_interactive_debug: {
41  destinations: {
42  AllDebug: {
43  #
44  # message destination: all debug messages to console
45  #
46  type: "cout"
47  threshold: "DEBUG"
48  categories: {
49  default: {}
50  }
51  } # AllDebug
52 
53  } # destinations
54 } # message_services_interactive_debug
55 
56 
57 
58 END_PROLOG