protodune_optical_tutorial_flashmatch.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "FlashMatchAna.fcl"
3 
4 process_name: FlashMatch
5 
6 services:
7 {
8  # Load the service that manages root files for histograms.
9  TFileService: { fileName: "protodune_optical_tutorial_flashmatch_hist.root" }
10  TimeTracker: {}
11  RandomNumberGenerator: {}
12  MemoryTracker: { } # default is one
13  message: @local::standard_info
14  FileCatalogMetadata: @local::art_file_catalog_mc
15  @table::protodune_simulation_services
16 }
17 
18 
19 
20 #source is now a root file
21 source:
22 {
23  module_type: RootInput
24 }
25 
26 # Define and configure some modules to do work on each event.
27 # First modules are defined; they are scheduled later.
28 # Modules are grouped by type.
29 physics:
30 {
31  analyzers:
32  {
33  # Configuration specific to supernova events.
34  # Switch to standard_flashmatchana for beam or NDK
35  flashmatch: @local::standard_flashmatchana
36  }
37  ana: [ flashmatch ]
38 
39  #end_paths is a keyword and contains the paths that do not modify the art::Event,
40  #ie analyzers and output streams. these all run simultaneously
41  end_paths: [ana]
42 }
43 
44 #block to define where the output goes. if you defined a filter in the physics
45 #block and put it in the trigger_paths then you need to put a SelectEvents: {SelectEvents: [XXX]}
46 #entry in the output stream you want those to go to, where XXX is the label of the filter module(s)
47 outputs:
48 {
49 }