runProtoDUNEBeamlineFilter_Pion_2GeV.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "BeamEvent.fcl"
3 #include "ProtoDUNEBeamlineFilter.fcl"
4 
5 
6 
7 process_name: BeamFilter
8 
9 services:
10 {
11  # Load the service that manages root files for histograms.
12  TFileService: { fileName: "BeamlineFilter_hist.root" }
13  TimeTracker: {}
14  MemoryTracker: {}
15  RandomNumberGenerator: {} #ART native random number generator
16  message: @local::dune_message_services_prod_debug
17  FileCatalogMetadata: @local::art_file_catalog_data
18  @table::protodune_services
19 }
20 
21 
22 source:
23 {
24  module_type: RootInput
25  maxEvents: -1
26  fileNames: ["input_file.root"]
27 }
28 
29 outputs:
30 {
31  out1:
32  {
33  module_type: RootOutput
34  fileName: "filtered.root" #default file name, can override from command line with -o or --output
35  dataTier: "reconstructed"
36  SelectEvents: [reco]
37  fastCloning: true
38  }
39 }
40 
41 physics:
42 {
43  producers:
44  {
45  }
46  filters:
47  {
48  filter: @local::standard_protodunebeamlinefilter_Pion_2GeV
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  stream1: [ out1 ]
56  #trigger_paths is a keyword and contains the paths that modify the art::event,
57  #ie filters and producers
58  trigger_paths: [ reco ]
59  #end_paths is a keyword and contains the paths that do not modify the art::Event,
60  #ie analyzers and output streams. these all run simultaneously
61  end_paths: [ stream1 ]
62 }
63 
64 ##############################################################
65 ##############################################################
66 ##############################################################
67 
68 ### Uncomment below to redo Beam Instrumentation Reconstruction
69 #services.IFBeam: {}
70 #physics.producers.beamevent: @local::proto_beamevent
71 #physics.reco: [ beamevent, filter ]
72 #physics.filters.filter.BeamlineUtils.TOFOffset: 0.
73 #physics.filters.filter.BeamlineUtils.UseCERNCalibSelection: true