Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
showerreco::ShowerRecoAlgBase Class Referenceabstract

#include <ShowerRecoAlgBase.h>

Inheritance diagram for showerreco::ShowerRecoAlgBase:
showerreco::ShowerRecoAlg

Public Member Functions

virtual ~ShowerRecoAlgBase ()=default
 
virtual void Reset ()
 Function to reset algorithm, to be called @ beginning of each event. More...
 
virtual void AppendInputClusters (const std::vector< cluster::ClusterParamsAlg > &cpan_v)
 Setter for a matched combination of clusters. More...
 
std::vector< recob::ShowerReconstruct (geo::GeometryCore const &geom, detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp)
 Execute reconstruction. More...
 

Protected Member Functions

virtual void ProcessInputClusters ()
 Function to reorganize input cluster information. More...
 
virtual ::recob::Shower RecoOneShower (geo::GeometryCore const &geom, detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp, const std::vector< showerreco::ShowerCluster_t > &clusters)=0
 Function to reconstruct one shower. More...
 

Protected Attributes

std::vector< std::vector< showerreco::ShowerCluster_t > > fInputClusters
 Input clusters. More...
 

Detailed Description

User defined class ShowerRecoAlgBase ... these comments are used to generate doxygen documentation!

Definition at line 50 of file ShowerRecoAlgBase.h.

Constructor & Destructor Documentation

virtual showerreco::ShowerRecoAlgBase::~ShowerRecoAlgBase ( )
virtualdefault

Member Function Documentation

void showerreco::ShowerRecoAlgBase::AppendInputClusters ( const std::vector< cluster::ClusterParamsAlg > &  cpan_v)
virtual

Setter for a matched combination of clusters.

Definition at line 16 of file ShowerRecoAlgBase.cxx.

17  {
18  std::vector<::showerreco::ShowerCluster_t> clusters;
19  clusters.reserve(cpan_v.size());
20 
21  for (auto const& cpan : cpan_v) {
22 
23  clusters.push_back(::showerreco::ShowerCluster_t());
24 
25  (*clusters.rbegin()).start_point = cpan.GetParams().start_point;
26  (*clusters.rbegin()).end_point = cpan.GetParams().end_point;
27  (*clusters.rbegin()).angle_2d = cpan.GetParams().angle_2d;
28  (*clusters.rbegin()).plane_id = cpan.Plane();
29  (*clusters.rbegin()).hit_vector = cpan.GetHitVector();
30  }
31 
32  fInputClusters.push_back(clusters);
33  }
std::vector< std::vector< showerreco::ShowerCluster_t > > fInputClusters
Input clusters.
virtual void showerreco::ShowerRecoAlgBase::ProcessInputClusters ( )
inlineprotectedvirtual

Function to reorganize input cluster information.

Definition at line 68 of file ShowerRecoAlgBase.h.

69  {}
std::vector<::recob::Shower > showerreco::ShowerRecoAlgBase::Reconstruct ( geo::GeometryCore const &  geom,
detinfo::DetectorClocksData const &  clockData,
detinfo::DetectorPropertiesData const &  detProp 
)

Execute reconstruction.

Definition at line 36 of file ShowerRecoAlgBase.cxx.

39  {
41 
42  std::vector<::recob::Shower> output;
43  output.reserve(fInputClusters.size());
44 
45  for (auto const& clusters : fInputClusters)
46  output.push_back(RecoOneShower(geom, clockData, detProp, clusters));
47 
48  return output;
49  }
virtual void ProcessInputClusters()
Function to reorganize input cluster information.
std::vector< std::vector< showerreco::ShowerCluster_t > > fInputClusters
Input clusters.
virtual ::recob::Shower RecoOneShower(geo::GeometryCore const &geom, detinfo::DetectorClocksData const &clockData, detinfo::DetectorPropertiesData const &detProp, const std::vector< showerreco::ShowerCluster_t > &clusters)=0
Function to reconstruct one shower.
virtual ::recob::Shower showerreco::ShowerRecoAlgBase::RecoOneShower ( geo::GeometryCore const &  geom,
detinfo::DetectorClocksData const &  clockData,
detinfo::DetectorPropertiesData const &  detProp,
const std::vector< showerreco::ShowerCluster_t > &  clusters 
)
protectedpure virtual

Function to reconstruct one shower.

void showerreco::ShowerRecoAlgBase::Reset ( void  )
virtual

Function to reset algorithm, to be called @ beginning of each event.

Definition at line 10 of file ShowerRecoAlgBase.cxx.

11  {
12  fInputClusters.clear();
13  }
std::vector< std::vector< showerreco::ShowerCluster_t > > fInputClusters
Input clusters.

Member Data Documentation

std::vector<std::vector<showerreco::ShowerCluster_t> > showerreco::ShowerRecoAlgBase::fInputClusters
protected

Input clusters.

Definition at line 80 of file ShowerRecoAlgBase.h.


The documentation for this class was generated from the following files: