runProtoBeamExample.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "BeamExample.fcl"
3 
4 process_name: testUtils
5 
6 services:
7 {
8  # Load the service that manages root files for histograms.
9  TFileService: { fileName: "trackUtils.root" }
10  TimeTracker: {}
11  MemoryTracker: {}
12  RandomNumberGenerator: {} #ART native random number generator
13  message: @local::dune_message_services_prod_debug
14  FileCatalogMetadata: @local::art_file_catalog_mc
15  @table::protodune_services
16 }
17 services.message.destinations.LogStandardOut.threshold: "INFO"
18 
19 #source is now a root file
20 source:
21 {
22  module_type: RootInput
23  maxEvents: -1
24  fileNames: ["input_file.root"]
25 }
26 
27 physics:
28 {
29  analyzers:
30  {
31  trkUtil: @local::proto_beam_example
32  }
33 
34  ana2: [ trkUtil ]
35 
36  end_paths: [ ana2 ]
37 }
38