pfpeff.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 
3 process_name: Mergeana
4 
5 services:
6 {
7  # Load the service that manages root files for histograms.
8  TFileService: { fileName: "ana_hist.root" }
9  TimeTracker: {}
10  RandomNumberGenerator: {}
11  MemoryTracker: { } # default is one
12  message: @local::dune_message_services_prod
13  FileCatalogMetadata: @local::art_file_catalog_mc
14  @table::dunefd_simulation_services
15 }
16 #services.PhotonVisibilityService: @local::dune35t_photonvisibilityservice
17 #source is now a root file
18 services.Geometry: @local::dune10kt_1x2x6_geo
19 source:
20 {
21  module_type: RootInput
22  maxEvents: 10 # Number of events to create
23 }
24 
25 # Define and configure some modules to do work on each event.
26 # First modules are defined; they are scheduled later.
27 # Modules are grouped by type.
28 physics:
29 {
30  analyzers:{}
31  #define the output stream, there could be more than one if using filters
32 # stream1: [ ]
33 
34  #define the producer and filter modules for this path, order matters,
35  #filters reject all following items. see lines starting physics.producers below
36  ana: [ pfpeff ]
37 
38  #end_paths is a keyword and contains the paths that do not modify the art::Event,
39  #ie analyzers and output streams. these all run simultaneously
40  end_paths: [ana]
41 # end_paths: [stream1]
42 }
43 
44 physics.analyzers.pfpeff: {
45  module_type: "PFPEfficiency"
46  MCTruthModuleLabel: "generator"
47  PFPModuleLabel: "pandora"
48  HitModuleLabel: "linecluster"
49  FidVolCutX: 10
50  FidVolCutY: 10
51  FidVolCutZ: 10
52 }