dump_genie_job.fcl
Go to the documentation of this file.
1 # nope #include "services.fcl"
2 
3 #include "AddGenieEventsToArt.fcl"
4 #include "GenieOutput.fcl"
5 
6 process_name: DumpGenieInfo
7 
8 services:
9 {
10  # Load the service that manages root files for histograms.
11  TFileService: { fileName: "dumpgenieinfo_hist.root" closeFileFast: false }
12  RandomNumberGenerator: {} #ART native random number generator
13  scheduler: { wantTracer: true wantSummary: true }
14 
15  # IFDH: {IFDH_BASE_URI: "http://samweb.fnal.gov:8480/sam/nova/api"}
16  # nope @table::standard_services
17 
18  scheduler: { }
19 }
20 
21 
22 # Read from an existing file
23 source:
24 {
25  module_type: RootInput
26  maxEvents: -1
27 }
28 
29 # Define and configure some modules to do work on each event.
30 # First modules are defined; they are scheduled later.
31 # Modules are grouped by type.
32 physics:
33 {
34 
35  producers:
36  {
37  # when fetched from file by dump module they'll come back
38  # ordered alphabetically by label, so for convenience put
39  # them in in that order (easing comparisons)
40  }
41 
42  analyzers:
43  {
44  outputgenie: @local::standard_genie_output
45  }
46 
47  simulate: [ ]
48  stream1: [ outputgenie, out1 ]
49 
50  trigger_paths: [ ] ## simulate ]
51  end_paths: [ stream1 ]
52 
53 }
54 
55 outputs:
56 {
57  out1:
58  {
59  module_type: RootOutput
60  fileName: "addgenie.root" # default name, override w/ -o --output
61  ## SelectEvents: { SelectEvents: [ simulate ] }
62  }
63 }
64 
65 physics.analyzers.outputgenie.dumpFilePattern: "std::cout"
66 
67 #physics.analyzers.outputgenie.dumpMCTruth: true
68 #physics.analyzers.outputgenie.dumpGTruth: true
69 #physics.analyzers.outputgenie.dumpMCFlux: true