dune1x2x6_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: "dune1x2x6_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::dunefd_simulation_services
16 }
17 
18 services.Geometry: @local::dune10kt_1x2x6_geo
19 
20 
21 #source is now a root file
22 source:
23 {
24  module_type: RootInput
25 }
26 
27 # Define and configure some modules to do work on each event.
28 # First modules are defined; they are scheduled later.
29 # Modules are grouped by type.
30 physics:
31 {
32  analyzers:
33  {
34  # Configuration specific to supernova events.
35  # Switch to standard_flashmatchana for beam or NDK
36  flashmatch: @local::marley_flashmatchana
37  }
38  ana: [ flashmatch ]
39 
40  #end_paths is a keyword and contains the paths that do not modify the art::Event,
41  #ie analyzers and output streams. these all run simultaneously
42  end_paths: [ana]
43 }
44 
45 #block to define where the output goes. if you defined a filter in the physics
46 #block and put it in the trigger_paths then you need to put a SelectEvents: {SelectEvents: [XXX]}
47 #entry in the output stream you want those to go to, where XXX is the label of the filter module(s)
48 outputs:
49 {
50 }