SaveSpacePoints_job.fcl
Go to the documentation of this file.
1 #include "SaveSpacePoints.fcl"
2 #include "services_dune.fcl"
3 
4 process_name: SPS
5 services:
6 {
7  TFileService: { fileName: "eventtree.root" }
8  TimeTracker: {}
9  @table::protodune_services
10 }
11 services.BackTrackerService.BackTracker.SimChannelModuleLabel: "tpcrawdecoder:simpleSC"
12 #Look at the input files
13 source:
14 {
15  module_type: RootInput
16  fileNames: [ "single_gen.root" ]
17  maxEvents: -1 # Number of events to create
18 }
19 
20 physics:
21 {
22 
23  analyzers:
24  {
25  sps: @local::proto_savesps
26  }
27 
28  #list the modules for this path, order matters, filters reject all following items
29  ana: [ sps ]
30 
31  #end_path are things that do not modify art::Event, includes analyzers
32  #and output modules. all items here can be run simultaneously
33  end_paths: [ana]
34 }
35