shower.fcl
Go to the documentation of this file.
1 #include "geometry.fcl"
2 #include "larproperties.fcl"
3 #include "larfft.fcl"
4 
5 #include "caldata.fcl"
6 #include "hitfindermodules.fcl"
7 #include "clustermodules.fcl"
8 #include "showerfindermodules.fcl"
9 
10 
11 process_name: FindShowers
12 
13 services:
14 {
15  TFileService: {fileName: "showers_hist.root"}
16  TimeTracker {}
17  ExptGeoHelperInterface: @local::argoneut_geometry_helper
18  Geometry: @local::argoneut_geo
19  LArPropertiesService: @local::argoneut_properties
20  LArFFT: @local::argoneut_larfft
21  DBScanService: @local::argoneut_dbscanservice
22  HoughLineService: @local::argoneut_houghlineservice
23  MessageLogger:
24  {
25  destinations: ["detailedInfo"]
26  categories: ["Summary"]
27  debugModules: ["*"]
28  detailedInfo: {threshold: "Summary"}
29  }
30 }
31 
32 
33 source:
34 {
35  module_type: RootInput
36  fileNames: ["../expt/single_e_argo.root"]
37  maxEvents: -1
38 }
39 
40 outputs:
41 {
42  out1:
43  {
44  module_type: RootOutput
45  fileName: "shower.root"
46  outputCommands: [ "keep *", "drop sim::Electronss_driftel_*_GenieGen" ]
47  }
48 }
49 
50 physics:
51 {
52  producers:
53  {
54  caldata: @local::argoneut_calwire
55  ffthit: @local::argoneut_hitfinder
56  dbcluster: @local::argoneut_dbcluster
57  showerreco: @local::argoneut_shower
58  }
59 
60  analyzers:{}
61 
62  recopath: [caldata, ffthit, dbcluster, showerreco]
63  stream1: [out1]
64 
65  trigger_paths: [recopath]
66  end_paths: [stream1]
67 }
68