activitytriggerprod_job.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "ActivityTriggerProd.fcl"
3 
4 process_name: ActivityTriggerProd
5 
6 services:
7 {
8  @table::dunefd_services
9  TFileService: { fileName: "ActivityTrigger_hist.root" }
10  TimeTracker: {}
11  MemoryTracker: { } # default is one
12  RandomNumberGenerator: {} #ART native random number generator
13  FileCatalogMetadata: @local::art_file_catalog_mc
14  Geometry: @local::dune10kt_1x2x6_geo
15 }
16 
17 physics:
18 {
19  producers:
20  {
21  activitytriggerprod: @local::standard_activitytriggerprod
22  }
23 
24  trigprod: [ activitytriggerprod ]
25 
26  # define output stream:
27  outstream: [ out1 ]
28 
29  # define trigger_paths, trigger_paths is a keyword and contains the paths that modify the art::Event,
30  # ie filters and producers
31  trigger_paths: [ trigprod ]
32 
33  end_paths: [ outstream ]
34 
35 }
36 
37 source:
38 {
39  module_type: RootInput
40  maxEvents: -1 # Number of events to create
41 }
42 
43 
44 outputs:
45 {
46  out1:
47  {
48  module_type: RootOutput
49  fileName: "ActivityTrigger_output.root" #default file name, can override from commandline with -o or --output
50  dataTier: "detector-simulated"
51  }
52 }