evd_dune35t_slicer.fcl
Go to the documentation of this file.
1 ##include "evdservices_dune.fcl"
2 #include "evd_dune.fcl"
3 
4 process_name: EVD
5 
6 services:
7 {
8  message: @local::evd_message
9  @table::dune35t_disp_data
10 }
11 
12 # Define the services
13 
14 #Look at the input files
15 source:
16 {
17  module_type: RootInput
18  fileNames: [ "single_gen.root" ]
19  maxEvents: -1 # Number of events to create
20 }
21 
22 outputs:{}
23 
24 # Define and configure some modules to do work on each event.
25 # First modules are defined; they are scheduled later.
26 # Modules are grouped by type.
27 physics:
28 {
29 
30  producers: {}
31 
32  filters:{}
33 
34  analyzers:
35  {
36  evdisp:{module_type: EVD}
37  }
38 
39  #list the modules for this path, order matters, filters reject all following items
40  evd: [ evdisp ]
41 
42  #end_path are things that do not modify art::Event, includes analyzers
43  #and output modules. all items here can be run simultaneously
44  end_paths: [evd]
45 }
46 
47 services.DetPedestalService.DetPedestalDUNE.UseDB: true
48 
49 services.ColorDrawingOptions.ColorOrGrayScale: 0 # use color
50 services.RawDrawingOptions.TotalTicks: 5200
51 services.RawDrawingOptions.StartTick: 0
52 
53 services.RawDrawingOptions.TPC: 1 #TPC 1 is the main drift volume in 35t
54 services.RawDrawingOptions.RawDataLabels: ["SplitterInput:TPC"] #slicer
55 
56 services.RecoDrawingOptions.DrawClusters: 0
57 services.RecoDrawingOptions.DrawTracks: 0
58 services.RecoDrawingOptions.DrawTrackSpacePoints: 0
59 services.RecoDrawingOptions.DrawOpFlashes: 0
60 services.RawDrawingOptions.RawQHigh: 200
61 services.RawDrawingOptions.RawQLow: -200
62 services.ColorDrawingOptions.RawQHigh:[ 200 ]
63 services.ColorDrawingOptions.RawQLow: [ -200 ]
64 
65