dump_simphotonslite.fcl
Go to the documentation of this file.
1 #
2 # File: dump_simphotonslite.fcl
3 # Purpose: Dump on screen SimPhotonsLite content
4 # Author: Gianluca Petrillo (petrillo@fnal.gov)
5 # Date: March 8, 2017
6 # Version: 1.0
7 #
8 # Service dependencies:
9 # - message facility
10 #
11 
12 process_name: DumpSimPhotonsLite
13 
14 services: {
15 
16  message: {
17  # debugModules: [ "*" ]
18  destinations: {
19 
20  # grab all the "DumpSimPhotonsLite" messages and put them in DumpSimPhotonsLite.log
21  DumpSimPhotonsLite: {
22  append: false
23  categories: {
24  DumpSimPhotonsLite: { limit: -1 }
25  default: { limit: 0 }
26  }
27  filename: "DumpSimPhotonsLite.log"
28  threshold: "INFO"
29  type: "file"
30  } # DumpSimPhotonsLite
31 
32  LogStandardOut: {
33  categories: {
34  DumpSimPhotonsLite: { limit: 0 }
35  default: {}
36  }
37  threshold: "WARNING"
38  type: "cout"
39  } # LogStandardOut
40 
41  } # destinations
42  } # message
43 } # services
44 
45 
46 source: {
47  module_type: RootInput
48 } # source
49 
50 
51 physics: {
52  producers:{}
53  filters: {}
54  analyzers: {
55  dumpsimphotonslite: {
56  module_type: DumpSimPhotonsLite
57 
58  # output category ("OutputCategory" by default), useful for filtering (see above)
59  OutputCategory: "DumpSimPhotonsLite"
60 
61  # specify the label of the sim::SimPhotonsLite data product (or producer)
62  InputPhotons: "largeant"
63 
64  } # dumpsimphotonslite
65  } # analyzers
66 
67  dumpers: [ dumpsimphotonslite ]
68 
69  trigger_paths: []
70  end_paths: [ dumpers ]
71 
72 } # physics