dunezsanalysis.fcl
Go to the documentation of this file.
1 #include "services_dune.fcl"
2 #include "singles_dune.fcl"
3 #include "largeantmodules_dune.fcl"
4 #include "detsimmodules_dune.fcl"
5 
6 # steering file for running a test of the impact of zero-suppression thresholds
7 # on energy resolution of an ADC sum of the collection wires. This module
8 # assumes the input file consists of many identically generated events (say a sample
9 # of electrons all of which have the same enrgy)
10 
11 # it is derived from AnalysisExample and most comments are stripped out.
12 
13 process_name: dunezsanalysis
14 
15 services:
16 {
17  # example command-line steering of the input and output files:
18  # lar -c dunezsanalysis.fcl -T myhistograms.root -s myinput.root
19 
20  # default output file -- contains a tree of ADC sums
21  TFileService: { fileName: "dunezsanalysis.root" }
22 
23  TimeTracker: {}
24  RandomNumberGenerator: {}
25  message: @local::standard_info
26  @table::dune35t_simulation_services_legacy
27 }
28 
29 source:
30 {
31  module_type: RootInput
32 
33  # Number of events to analyze; "-1" means all of the events in the input
34  # file. You can override this value with the "-n" option on the command line.
35  maxEvents: -1
36  # maxEvents: 1
37 
38  # default input file -- 30 MeV electrons in the 35t geometry.
39  fileNames: ["/dune/data/users/babu2038/result_1000_event/35T_singleGen_electron_30MeV.root"]
40 }
41 
42 # This is empty, because we're not writing any art::Events to an output file.
43 outputs:{}
44 
45 
46 physics:
47 {
48  analyzers:
49  {
50  dunezsanalysis:
51  {
52  module_type: "dunezsanalysis"
53  }
54  }
55 
56  analysis: [ dunezsanalysis ]
57 
58  end_paths: [ analysis ]
59 }
60