evd_uboone_efficiency.fcl
Go to the documentation of this file.
1 #include "evdservices_base.fcl"
2 #include "trackfindermodules.fcl"
3 #include "particleid.fcl"
4 #include "cluster_microboone.fcl"
5 #include "showerfindermodules.fcl"
6 
7 process_name: EVD
8 
9 services:
10 {
11  # Load the service that manages root files for histograms.
12  TFileService: {}
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  #list the modules for this path, order matters, filters reject all following items
53  evd: [ evdisp ]
54  recopath: [graph,showeranglecluster,showerreco]
55  #end_path are things that do not modify art::Event, includes analyzers
56  #and output modules. all items here can be run simultaneously
57  trigger_paths: [recopath]
58  end_paths: [evd]
59 }
60 
61 physics.producers.showeranglecluster.ClusterModuleLabel: "graph"
62 physics.producers.spacepts.ClusterModuleLabel: "graph"
63 
64 services.EvdLayoutOptions.ShowSideBar: 1
65 services.EvdLayoutOptions.ShowClusterSection: 1
66 services.EvdLayoutOptions.ChangeWire: 1
67 services.EvdLayoutOptions.EnableMCTruthCheckBox: 0
68 services.RecoDrawingOptions.ClusterModuleLabels: ["graph"]
69 services.RecoDrawingOptions.DrawClusters: 1
70 services.AnalysisDrawingOptions.CalorimetryModuleLabels: ["showerreco"]
71 services.ScanOptions.Categories: ["Interaction Type", "Particles Coinciding wih the Vertex"]
72 services.ScanOptions.FieldLabels: ["nu_e CC", "nu_mu CC", "NC","unambiguous",
73  "# of muons ","unambiguous","# of protons","unambiguous","# of charged pions","unambiguous",
74  "# other tracks","unambiguous",
75  "# of electrons","unambiguous","# of single photons","unambiguous","# of pi0" , "unambiguous"]
76 services.ScanOptions.FieldTypes: ["RadioButton", "RadioButton", "RadioButton","CheckButton",
77  "Number","CheckButton","Number","CheckButton","Number","CheckButton","Number","CheckButton"
78  ,"Number", "CheckButton","Number","CheckButton","Number", "CheckButton"] # type of each fieldd
79 services.ScanOptions.FieldsPerCategory: [4,14]
80 
81 
82