-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathrun_lightcalo.fcl
More file actions
59 lines (48 loc) · 1.48 KB
/
run_lightcalo.fcl
File metadata and controls
59 lines (48 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include "services_sbnd.fcl"
#include "simulationservices_sbnd.fcl"
#include "messages_sbnd.fcl"
#include "sam_sbnd.fcl"
#include "lightcalo_sbnd.fcl"
process_name: LightCaloProducer
services:
{
TFileService: { fileName: "lightcalo_tree.root" }
RandomNumberGenerator: {}
message: @local::sbnd_message_services_prod # from messages_sbnd.fcl
FileCatalogMetadata: @local::sbnd_file_catalog_mc # from sam_sbnd.fcl
@table::sbnd_services # from services_sbnd.fcl
@table::sbnd_g4_services
}
source:
{
module_type: RootInput
maxEvents: -1
}
outputs:
{
out1:
{
module_type: RootOutput
fileName: "%ifb_lightcalo-art.root"
dataTier: "reconstructed"
compressionLevel:1
}
}
physics:
{
producers:
{
lightcalo: @local::sbnd_lightcalo
}
#define the producer and filter modules for this path, order matters,
reco: [lightcalo]
# define the output stream, there could be more than one if using filters
stream1: [out1]
# trigger_paths is a keyword and contains the paths that modify the art::event,
# ie filters and producers
trigger_paths: [reco]
# end_paths is a keyword and contains the paths that do not modify the art::Event,
# ie analyzers and output streams. these all run simultaneously
end_paths: [stream1]
}
physics.producers.lightcalo.FillTree: true