energyreco.fcl
Go to the documentation of this file.
1 #include "calorimetry_dune10kt.fcl"
2 #include "trackfinderalgorithms.fcl"
3 #include "neutrinoenergyrecoalg_dune.fcl"
4 
5 BEGIN_PROLOG
6 
7 dunefd_nuenergyreco_pmtrack:
8 {
9  module_type: "EnergyReco"
10 
11  # RecoMethod is method of neutrino energy reconstruction
12  # 1 Split event into longest reco track and hadronic part, suitable for numu CC events (method 3 is used for events with no reco track)
13  # 2 Split event into reco shower with highest charge and hadronic part, suitable for nue CC events (method 3 is used for events with no reco shower)
14  # 3 Use charges of all hits and convert to energy, suitable for NC events, numu CC events with no reco track or nue CC events with no reco shower
15  RecoMethod: 1
16 
17  WireLabel: "wclsdatanfsp:gauss"
18  HitLabel: "linecluster"
19  TrackLabel: "pmtrack"
20  ShowerLabel: "emshower"
21  TrackToHitLabel: "pmtrack"
22  ShowerToHitLabel: "emshower"
23  HitToSpacePointLabel: "pmtrack"
24 
25  NeutrinoEnergyRecoAlg: @local::dune10kt_neutrinoenergyrecoalg
26 }
27 
28 dunefd_nuenergyreco_pandora_numu:
29 {
30  @table::dunefd_nuenergyreco_pmtrack
31  RecoMethod: 1
32  WireLabel: "wclsdatanfsp:gauss"
33  HitLabel: "pandora"
34  TrackLabel: "pandoraTrack"
35  ShowerLabel: "pandoraShower"
36  TrackToHitLabel: "pandoraTrack"
37  ShowerToHitLabel: "pandoraShower"
38  HitToSpacePointLabel: "pandora"
39 }
40 
41 dunefd_nuenergyreco_pandora_nue:
42 {
43  @table::dunefd_nuenergyreco_pandora_numu
44  RecoMethod: 2
45 }
46 
47 dunefd_nuenergyreco_pandora_nc:
48 {
49  @table::dunefd_nuenergyreco_pandora_numu
50  RecoMethod: 3
51 }
52 
53 dunefdvd_nuenergyreco_pandora_numu: @local::dunefd_nuenergyreco_pandora_numu
54 dunefdvd_nuenergyreco_pandora_numu.NeutrinoEnergyRecoAlg: @local::dunevd10kt_neutrinoenergyrecoalg
55 
56 dunefdvd_nuenergyreco_pandora_nue: @local::dunefd_nuenergyreco_pandora_nue
57 dunefdvd_nuenergyreco_pandora_nue.NeutrinoEnergyRecoAlg: @local::dunevd10kt_neutrinoenergyrecoalg
58 
59 dunefdvd_nuenergyreco_pandora_nc: @local::dunefd_nuenergyreco_pandora_nc
60 dunefdvd_nuenergyreco_pandora_nc.NeutrinoEnergyRecoAlg: @local::dunevd10kt_neutrinoenergyrecoalg
61 
62 
63 END_PROLOG