checkbacktracking.fcl
Go to the documentation of this file.
1 #include "services_argoneut.fcl"
2 #include "caldata.fcl"
3 #include "hitfindermodules.fcl"
4 #include "mccheatermodules.fcl"
5 
6 process_name: BackTrack
7 
8 services:
9 {
10  # Load the service that manages root files for histograms.
11  TFileService: { fileName: "backtrack_hist.root" }
12  message: @local::standard_info
13  @table::argoneut_simulation_services
14 }
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 # 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  producers:
30  {
31  caldata: @local::argoneut_calwire
32  ffthit: @local::argoneut_hitfinder
33  }
34 
35  analyzers:
36  {
37  backtrack: @local::standard_checkbacktrack
38  }
39 
40  reco: [ caldata, ffthit ]
41  ana: [ backtrack ]
42 
43  trigger_paths: [ reco ]
44  end_paths: [ ana ]
45 }
46 
47