cheaterreco.fcl
Go to the documentation of this file.
1 #include "services_argoneut.fcl"
2 #include "caldata.fcl"
3 #include "hitfindermodules.fcl"
4 #include "clustermodules.fcl"
5 #include "trackfindermodules.fcl"
6 #include "vertexfindermodules.fcl"
7 #include "showerfindermodules.fcl"
8 #include "eventfindermodules.fcl"
9 #include "mccheatermodules.fcl"
10 
11 process_name: CheaterReco
12 
13 services:
14 {
15  # Load the service that manages root files for histograms.
16  TFileService: { fileName: "cheater_hist.root" }
17  message: @local::standard_info
18  @table::argoneut_simulation_services
19 }
20 
21 
22 #source is now a root file
23 source:
24 {
25  module_type: RootInput
26  maxEvents: 10
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  caldata: @local::argoneut_calwire
38  hit: @local::standard_hitcheater
39  cluster: @local::standard_clustercheater
40  shower: @local::standard_showercheater
41  track: @local::standard_trackcheater
42  vertex: @local::standard_vertexcheater
43  event: @local::standard_eventcheater
44  }
45 
46  analyzers:
47  {
48  check: @local::standard_recocheck
49  }
50 
51  reco: [ caldata, hit, cluster, track, shower, vertex, event ]
52  ana: [ check ]
53 
54  stream1: [ out1 ]
55  trigger_paths: [ reco ]
56  end_paths: [ ana, stream1 ]
57 }
58 
59 outputs:
60 {
61  out1:
62  {
63  module_type: RootOutput
64  fileName: "cheater_reco.root"
65  fastCloning: false
66  }
67 }