runConvTrackPID.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "CTPEvaluator.fcl"
3 
4 process_name: CTPEvaluator
5 
6 services:
7 {
8  # Load the service that manages root files for histograms.
9  TFileService: { fileName: "%ifb_ctp_hist.root"
10  closeFileFast: false }
11  FileCatalogMetadata: @local::art_file_catalog_mc
12  @table::dunefd_simulation_services
13  #@table::standard_services
14 }
15 
16 # Input source is a ROOT file
17 source:
18 {
19  module_type: RootInput
20  maxEvents: -1 # Number of events to create
21 
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  # Declare the modules
30  analyzers:
31  {
32  ctpeval: @local::standard_convTrackPID
33  }
34 
35  # Build the paths
36  map: [ctpeval]
37 }
38 
39 ########################################################################
40