LArSoft  v10_04_05
Liquid Argon Software toolkit - https://larsoft.org/
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ShowerRecoManager.cxx
Go to the documentation of this file.
1 #include "ShowerRecoManager.h"
2 
10 
11 namespace showerreco {
12 
13  ShowerRecoManager::ShowerRecoManager(unsigned int const num_planes)
14  : fShowerAlgo(nullptr), fMatchMgr(nullptr)
15  {
16  fMatch = true;
17  fMatchMgr = new ::cmtool::CMatchManager(num_planes);
18  }
19 
21  {
23  fMatchMgr->Reset();
24  }
25 
27  geo::WireReadoutGeom const& wireReadoutGeom,
28  detinfo::DetectorClocksData const& clockData,
29  detinfo::DetectorPropertiesData const& detProp,
30  const std::vector<std::vector<util::PxHit>>& clusters,
31  std::vector<::recob::Shower>& showers)
32  {
33  util::GeometryUtilities const gser{geom, wireReadoutGeom, clockData, detProp};
34  showers.clear();
35  fMatchMgr->SetClusters(gser, clusters);
36 
37  ClusterAss_t res_ass;
38  // Run matching & retrieve matched cluster indices
39  try {
40  fMatchMgr->Process(gser);
41  }
42  catch (::cmtool::CMTException& e) {
43  e.what();
44  return res_ass;
45  }
46  res_ass = fMatchMgr->GetBookKeeper().GetResult();
47 
48  Process(geom, wireReadoutGeom, clockData, detProp, res_ass, showers);
49 
50  return res_ass;
51  }
52 
54  geo::WireReadoutGeom const& wireReadoutGeom,
55  detinfo::DetectorClocksData const& clockData,
56  detinfo::DetectorPropertiesData const& detProp,
57  const std::vector<std::vector<util::PxHit>>& clusters,
58  const ClusterAss_t& ass,
59  std::vector<::recob::Shower>& showers)
60  {
61  showers.clear();
62  util::GeometryUtilities const gser{geom, wireReadoutGeom, clockData, detProp};
63  fMatchMgr->SetClusters(gser, clusters);
64 
65  Process(geom, wireReadoutGeom, clockData, detProp, ass, showers);
66  }
67 
69  geo::WireReadoutGeom const& wireReadoutGeom,
70  detinfo::DetectorClocksData const& clockData,
71  detinfo::DetectorPropertiesData const& detProp,
72  const ClusterAss_t& ass,
73  std::vector<::recob::Shower>& showers)
74  {
75 
76  for (auto const& pair : ass) {
77  std::vector<::cluster::ClusterParamsAlg> cpans;
78 
79  cpans.reserve(pair.size());
80 
81  for (auto const& index : pair)
82  cpans.push_back(fMatchMgr->GetInputClusters()[index]);
83 
85  }
86 
87  // Run shower reco
88  showers = fShowerAlgo->Reconstruct(geom, wireReadoutGeom, clockData, detProp);
89  }
90 
91 }
std::vector< std::vector< unsigned int > > ClusterAss_t
Class def header for a class CMatchBookKeeper.
virtual void Reset()
Method to reset itself.
const char * what() const noexcept override
Definition: CMTException.h:30
ClusterAss_t Reconstruct(geo::GeometryCore const &geom, geo::WireReadoutGeom const &wireReadoutGeom, detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp, const std::vector< std::vector< util::PxHit >> &clusters, std::vector<::recob::Shower > &showers)
::showerreco::ShowerRecoAlgBase * fShowerAlgo
Shower reconstruction algorithm.
virtual void AppendInputClusters(const std::vector< cluster::ClusterParamsAlg > &cpan_v)
Setter for a matched combination of clusters.
std::vector< recob::Shower > Reconstruct(geo::GeometryCore const &geom, geo::WireReadoutGeom const &wireReadoutGeom, detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp)
Execute reconstruction.
ShowerRecoManager(unsigned int num_planes)
auto vector(Vector const &v)
Returns a manipulator which will print the specified array.
Definition: DumpUtils.h:289
virtual void Reset()
Function to reset algorithm, to be called @ beginning of each event.
const std::vector< cluster::ClusterParamsAlg > & GetInputClusters() const
A getter for input clusters.
Definition: CMManagerBase.h:84
Interface for a class providing readout channel mapping to geometry.
Class def header for exception classes in CMTException.
const CMatchBookKeeper & GetBookKeeper() const
A method to obtain book keeper.
Definition: CMatchManager.h:49
bool fMatch
Boolean flag to whether or not to run matching.
Description of the physical geometry of one entire detector.
Definition: GeometryCore.h:91
::cmtool::CMatchManager * fMatchMgr
Cluster matching code.
void SetClusters(util::GeometryUtilities const &gser, const std::vector< std::vector< util::PxHit >> &clusters)
A simple method to add a cluster.
Class def header for a class CMatchManager.
Contains all timing reference information for the detector.
void Process(util::GeometryUtilities const &gser)
A method to execute the main action, to be called per event.
Class def header for a class ShowerRecoAlgBase.
void Process(geo::GeometryCore const &geom, geo::WireReadoutGeom const &wireReadoutGeom, detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp, const ClusterAss_t &ass, std::vector<::recob::Shower > &showers)
Float_t e
Definition: plot.C:35
std::vector< std::vector< unsigned int > > GetResult() const
Method to get result.
Class def header for a class ShowerRecoManager.