RecoTrack.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 
3 process_name: RecoTrack
4 
5 services:
6 {
7  TFileService: { fileName: "RecoTrack.root" }
8  TimeTracker: {}
9  MemoryTracker: { } # default is one
10  RandomNumberGenerator: {} #ART native random number generator
11  message: @local::dune_message_services_prod_debug
12  FileCatalogMetadata: @local::art_file_catalog_mc
13  @table::dune35t_services_legacy
14 } # services
15 
16 source:
17 {
18  module_type: RootInput
19 
20  maxEvents: -1
21 }
22 
23 # outputs:
24 # {
25 # out1:
26 # {
27 # fastCloning: false
28 # }
29 # }
30 
31 physics:
32 {
33  analyzers:
34  {
35  recotrack:
36  {
37  module_type: "RecoTrack"
38 
39  TrackLabel: "costrk"
40 
41  HitLabel: "gaushit" # gaushit is the label used in the root file
42  }
43  }
44 
45  analysis: [ recotrack ]
46 
47  end_paths: [ analysis ]
48 
49 } # physics
50