evd_uboone_analysis.fcl
Go to the documentation of this file.
1 #include "evdservices_microboone.fcl"
2 ##include "trackfindermodules_microboone.fcl"
3 #include "particleid.fcl"
4 #include "cluster_microboone.fcl"
5 #include "showerfindermodules_noinclude_microboone.fcl"
6 
7 process_name: EVD
8 
9 services:
10 {
11  # Load the service that manages root files for histograms.
12  TFileService: { fileName: "cosmics_hist.root" closeFileFast: false }
13  TimeTracker: {}
14  RandomNumberGenerator: {} #ART native random number generator
15  message: @local::evd_message
16  @table::microboone_disp
17 }
18 
19 # Define the services
20 
21 #Look at the input files
22 source:
23 {
24  module_type: RootInput
25  fileNames: [ "data.root" ]
26  maxEvents: -1 # Number of events to create
27  #inputCommands:["keep*","drop sim::PMTHits_*_*_*"]
28 }
29 
30 outputs:{}
31 
32 # Define and configure some modules to do work on each event.
33 # First modules are defined; they are scheduled later.
34 # Modules are grouped by type.
35 physics:
36 {
37 
38  producers:
39  {
40  graph: @local::microboone_graphcluster
41  showeranglecluster: @local::microboone_showeranglecluster
42  showerreco: @local::microboone_shower
43  }
44 
45  filters:{}
46 
47  analyzers:
48  {
49  evdisp:{module_type: EVD}
50 
51  }
52 
53  #list the modules for this path, order matters, filters reject all following items
54  evd: [ evdisp ]
55  recopath: [graph,showeranglecluster,showerreco]
56  #recopath: [graph]
57  #recopath: [graph,spacepts, calo ,pid]
58  #end_path are things that do not modify art::Event, includes analyzers
59  #and output modules. all items here can be run simultaneously
60  trigger_paths: [recopath]
61  end_paths: [evd]
62 }
63 services.EvdLayoutOptions.ShowSideBar: 1
64 services.EvdLayoutOptions.ShowClusterSection: 1
65 services.EvdLayoutOptions.ChangeWire: 1
66 services.RecoDrawingOptions.ClusterModuleLabels: ["graph"]
67 services.AnalysisDrawingOptions.CalorimetryModuleLabels: ["showerreco"]
68 services.RecoDrawingOptions.DrawClusters: 1
69 physics.producers.showeranglecluster.ClusterModuleLabel: "graph"
70 physics.producers.spacepts.ClusterModuleLabel: "graph"