run_larg4particlefilter.fcl
Go to the documentation of this file.
1 ##include "services_argoneut.fcl"
2 ##include "filters.fcl"
3 #include "services_microboone.fcl"
4 #include "larg4particlefilter.fcl"
5 process_name:Filter5
6 services:
7 {
8  # Load the service that manages root files for histograms.
9  TFileService: { fileName: "filtered_hist.root" }
10  #Timing: {}
11  RandomNumberGenerator: {} #ART native random number generator
12  @table::microboone_simulation_services
13 # message: @local::standard_warning
14 # user: @local::argoneut_services
15 }
16 
17 #source is now a root file
18 source:
19 {
20  module_type: RootInput
21  #maxEvents: 10 # Number of events to create
22 }
23 
24 outputs:
25 {
26  out1:
27  {
28  module_type: RootOutput
29  fileName: "filtered.root" #default file name, can override from command line with -o or --output
30  dataTier: "reconstructed"
31  SelectEvents: [reco]
32  fastCloning: true
33  }
34 }
35 
36 # Define and configure some modules to do work on each event.
37 # First modules are defined; they are scheduled later.
38 # Modules are grouped by type.
39 physics:
40 {
41 
42  producers:
43  {
44  }
45 
46  filters:
47  {
48  filter: @local::standard_larg4particlefilter
49  }
50 
51 
52  #define the producer and filter modules for this path, order matters,
53  #filters reject all following items. see lines starting physics.producers below
54  reco: [ filter ]
55 # reco: []
56  #filter: [ muonfilter ]
57 
58  #define the output stream, there could be more than one if using filters
59  stream1: [ out1 ]
60 
61  #trigger_paths is a keyword and contains the paths that modify the art::event,
62  #ie filters and producers
63  trigger_paths: [ reco ]
64 
65  #end_paths is a keyword and contains the paths that do not modify the art::Event,
66  #ie analyzers and output streams. these all run simultaneously
67  end_paths: [ stream1 ]
68 }
69 
70 #physics.filters.filter.EventList: "./dec_at_res_k_run_4.txt"
71 #physics.filters.filter.EventList: "/pnfs/uboone/persistent/users/vmeddage/dec_at_res_k_run_4.txt"
72 #physics.filters.filter.EventList: "/uboone/app/users/vmeddage/calibration/track_list_1.txt"
73 #physics.filters.filter.EventList: "/uboone/app/users/vmeddage/calibration/v_plane_track_info.txt"
74 
75 physics.filters.filter.Selection: 1
76 # don't preload the FFT kernel
77 #services.user.LArFFT.FFTOption: ""
78 services.DetectorClocksService.InheritClockConfig: false