reco_dune10kt_wirecell_refactored.fcl
Go to the documentation of this file.
1 # standard_reco_dune10kt.fcl
2 #
3 # Dom Brailsford
4 # April 2020
5 #
6 # Runs the full suite of dune FD reconstruction algorithms, including the photon detection system (provided by Alex Himmel's fcl)
7 
8 #include "services_dune.fcl"
9 #include "workflow_reco_dune10kt.fcl"
10 #include "tools_dune.fcl"
11 
12 process_name: Reco
13 
14 services:
15 {
16  # Load the service that manages root files for histograms.
17  TFileService: { fileName: "reco_hist.root" }
18  MemoryTracker: {}
19  TimeTracker: {}
20  RandomNumberGenerator: {} #ART native random number generator
21  message: @local::dune_message_services_prod
22  FileCatalogMetadata: @local::art_file_catalog_mc
23  @table::dunefd_reco_services_refactored
24 }
25 #source is now a root file
26 source:
27 {
28  module_type: RootInput
29  maxEvents: 10 # Number of events to create
30  saveMemoryObjectThreshold: 0
31  inputCommands: ["keep *_*_*_*", "drop *_*_*_Reco" ]
32 }
33 
34 # Define and configure some modules to do work on each event.
35 # First modules are defined; they are scheduled later.
36 # Modules are grouped by type.
37 physics:
38 {
39 
40  producers:
41  {
42  @table::dunefd_horizdrift_producers
43  }
44 
45 
46 
47  #define the output stream, there could be more than one if using filters
48  stream1: [ out1 ]
49 
50  #trigger_paths is a keyword and contains the paths that modify the art::event,
51  #ie filters and producers
52 reco: [ @sequence::dunefd_horizdrift_workflow_reco ]
53 trigger_paths: [ reco ]
54 
55  #end_paths is a keyword and contains the paths that do not modify the art::Event,
56  #ie analyzers and output streams. these all run simultaneously
57  end_paths: [stream1]
58 }
59 
60 #block to define where the output goes. if you defined a filter in the physics
61 #block and put it in the trigger_paths then you need to put a SelectEvents: {SelectEvents: [XXX]}
62 #entry in the output stream you want those to go to, where XXX is the label of the filter module(s)
63 outputs:
64 {
65  out1:
66  {
67  module_type: RootOutput
68  fileName: "%ifb_reco.root"
69  dataTier: "full-reconstructed"
70  compressionLevel: 1
71  saveMemoryObjectThreshold: 0
72  }
73 }