trkkal_uboone.fcl
Go to the documentation of this file.
1 #include "services_microboone.fcl"
2 #include "largeantmodules.fcl"
3 #include "caldata.fcl"
4 #include "hitfindermodules.fcl"
5 #include "clustermodules.fcl"
6 #include "trackfinderservices.fcl"
7 #include "trackfindermodules.fcl"
8 
9 process_name: TrkKal
10 
11 services:
12 {
13  # Load the service that manages root files for histograms.
14  TFileService: { fileName: "recon_hist_Kal_mu_dbs.root" }
15  TimeTracker {}
16  MemoryTracker: { } # default is one
17  RandomNumberGenerator: {} #ART native random number generator
18 }
19 
20 services.ExptGeoHelperInterface: @local::microboone_geometry_helper
21 services.Geometry: @local::microboone_geo
22 services.LArPropertiesService: @local::microboone_properties
23 services.DetectorPropertiesService: @local::microboone_detproperties
24 services.LArFFT: @local::microboone_larfft
25 services.LArG4Parameters: @local::microboone_largeantparameters
26 services.LArVoxelCalculator: @local::microboone_larvoxelcalculator
27 services.DatabaseUtil: @local::microboone_database
28 
29 
30 source:
31 {
32  module_type: RootInput
33  fileNames: [ " standard_reco.root" ]
34  maxEvents: 5 # Number of events to create
35 }
36 
37 outputs:
38 {
39  out1:
40  {
41  module_type: RootOutput
42  fileName: "recon_Kal_mu.root" #default file name, can override from command line with -o or --output
43  }
44 }
45 
46 # Define and configure some modules to do work on each event.
47 # First modules are defined; they are scheduled later.
48 # Modules are grouped by type.
49 physics:
50 {
51 
52  producers:
53  {
54  trackkal: @local::microboone_kalman
55  }
56 
57 # filters:{}
58 
59  analyzers:
60  {
61  largana: @local::microboone_largeantana
62  }
63 
64  #define the producer and filter modules for this path, order matters,
65  #filters reject all following items. see lines starting physics.producers below
66  recon: [ trackkal ]
67  analyze: [ largana ] # trkana
68  #define the output stream, there could be more than one if using filters
69  stream1: [ out1 ]
70 
71  #trigger_paths is a keyword and contains the paths that modify the art::event,
72  #ie filters and producers
73  trigger_paths: [ recon ]
74 
75  #end_paths is a keyword and contains the paths that do not modify the art::Event,
76  #ie analyzers and output streams. these all run simultaneously
77  end_paths: [ analyze, stream1 ] #
78 }
79 
80 # set some parameters
81 physics.producers.trackkal.PosErr3: [0.04, 0.04, 0.04] // cm
82 physics.producers.trackkal.MomErr3: [0.5, 0.5, 0.5] // GeV
83 physics.producers.trackkal.MomStart3: [0.1, 0.1, 1] // Unitless. Will not be norm'd.