Public Member Functions | Private Attributes | List of all members
lar_content::LArShowerPfo Class Reference

lar pfo object More...

#include <LArShowerPfo.h>

Inheritance diagram for lar_content::LArShowerPfo:

Public Member Functions

 LArShowerPfo (const LArShowerPfoParameters &parameters)
 Constructor. More...
 
const pandora::CartesianVector & GetShowerLength () const
 Get the shower length and width from 3d shower fit. More...
 
const pandora::CartesianVector & GetShowerCentroid () const
 Get the shower centroid from the 3d shower fit. More...
 
float GetShowerOpeningAngle () const
 Get the shower opening angle from 3d shower fit. More...
 
const pandora::CartesianVector & GetShowerDirection () const
 Get the shower direction, also the primary eigen vector from 3d shower fit. More...
 
const pandora::CartesianVector & GetShowerSecondaryVector () const
 Get the shower secondary eigen vector from 3d shower fit. More...
 
const pandora::CartesianVector & GetShowerTertiaryVector () const
 Get the shower tertiary eigen vector from 3d shower fit. More...
 
const pandora::CartesianVector & GetShowerEigenValues () const
 Get the shower eigen values from 3d PCA. More...
 
const pandora::CartesianVector & GetShowerVertex () const
 Get the shower starting point from 3d shower fit. More...
 

Private Attributes

pandora::CartesianVector m_showerLength
 Shower length and widths from 3d shower fit. More...
 
pandora::CartesianVector m_showerCentroid
 Shower centroid from 3d shower fit. More...
 
float m_showerOpeningAngle
 Shower opening angle. More...
 
pandora::CartesianVector m_showerDirection
 Shower direction, primary eigen vector. More...
 
pandora::CartesianVector m_showerSecondaryVector
 Shower secondary eigen vector. More...
 
pandora::CartesianVector m_showerTertiaryVector
 Shower tertiary eigen vector. More...
 
pandora::CartesianVector m_showerEigenValues
 Shower eigenvalues from 3d PCA. More...
 
pandora::CartesianVector m_showerVertex
 Shower starting point. More...
 

Detailed Description

lar pfo object

Definition at line 42 of file LArShowerPfo.h.

Constructor & Destructor Documentation

lar_content::LArShowerPfo::LArShowerPfo ( const LArShowerPfoParameters parameters)
inline

Constructor.

Parameters
parametersthe lar pfo parameters

Definition at line 162 of file LArShowerPfo.h.

162  :
164  m_showerLength(parameters.m_showerLength.Get()),
165  m_showerCentroid(parameters.m_showerCentroid.Get()),
166  m_showerOpeningAngle(parameters.m_showerOpeningAngle.Get()),
167  m_showerDirection(parameters.m_showerDirection.Get()),
168  m_showerSecondaryVector(parameters.m_showerSecondaryVector.Get()),
169  m_showerTertiaryVector(parameters.m_showerTertiaryVector.Get()),
170  m_showerEigenValues(parameters.m_showerEigenValues.Get()),
171  m_showerVertex(parameters.m_showerVertex.Get())
172 {
173 }
pandora::CartesianVector m_showerDirection
Shower direction, primary eigen vector.
Definition: LArShowerPfo.h:112
pandora::CartesianVector m_showerEigenValues
Shower eigenvalues from 3d PCA.
Definition: LArShowerPfo.h:115
pandora::CartesianVector m_showerLength
Shower length and widths from 3d shower fit.
Definition: LArShowerPfo.h:109
struct Object Object
Object type.
Definition: manual.c:5
float m_showerOpeningAngle
Shower opening angle.
Definition: LArShowerPfo.h:111
pandora::CartesianVector m_showerCentroid
Shower centroid from 3d shower fit.
Definition: LArShowerPfo.h:110
pandora::CartesianVector m_showerSecondaryVector
Shower secondary eigen vector.
Definition: LArShowerPfo.h:113
pandora::CartesianVector m_showerVertex
Shower starting point.
Definition: LArShowerPfo.h:116
pandora::CartesianVector m_showerTertiaryVector
Shower tertiary eigen vector.
Definition: LArShowerPfo.h:114

Member Function Documentation

const pandora::CartesianVector & lar_content::LArShowerPfo::GetShowerCentroid ( ) const
inline

Get the shower centroid from the 3d shower fit.

Returns
the shower centroid from the 3d shower fit

Definition at line 184 of file LArShowerPfo.h.

185 {
186  return m_showerCentroid;
187 }
pandora::CartesianVector m_showerCentroid
Shower centroid from 3d shower fit.
Definition: LArShowerPfo.h:110
const pandora::CartesianVector & lar_content::LArShowerPfo::GetShowerDirection ( ) const
inline

Get the shower direction, also the primary eigen vector from 3d shower fit.

Returns
the shower direction, also the primary eigen vector from 3d shower fit

Definition at line 198 of file LArShowerPfo.h.

199 {
200  return m_showerDirection;
201 }
pandora::CartesianVector m_showerDirection
Shower direction, primary eigen vector.
Definition: LArShowerPfo.h:112
const pandora::CartesianVector & lar_content::LArShowerPfo::GetShowerEigenValues ( ) const
inline

Get the shower eigen values from 3d PCA.

Returns
the shower eigen values from 3d PCA

Definition at line 219 of file LArShowerPfo.h.

220 {
221  return m_showerEigenValues;
222 }
pandora::CartesianVector m_showerEigenValues
Shower eigenvalues from 3d PCA.
Definition: LArShowerPfo.h:115
const pandora::CartesianVector & lar_content::LArShowerPfo::GetShowerLength ( ) const
inline

Get the shower length and width from 3d shower fit.

Returns
the shower length and width from 3d shower fit

Definition at line 177 of file LArShowerPfo.h.

178 {
179  return m_showerLength;
180 }
pandora::CartesianVector m_showerLength
Shower length and widths from 3d shower fit.
Definition: LArShowerPfo.h:109
float lar_content::LArShowerPfo::GetShowerOpeningAngle ( ) const
inline

Get the shower opening angle from 3d shower fit.

Returns
the shower opening angle from 3d shower fit

Definition at line 191 of file LArShowerPfo.h.

192 {
193  return m_showerOpeningAngle;
194 }
float m_showerOpeningAngle
Shower opening angle.
Definition: LArShowerPfo.h:111
const pandora::CartesianVector & lar_content::LArShowerPfo::GetShowerSecondaryVector ( ) const
inline

Get the shower secondary eigen vector from 3d shower fit.

Returns
the shower secondary eigen vector from 3d shower fit

Definition at line 205 of file LArShowerPfo.h.

206 {
208 }
pandora::CartesianVector m_showerSecondaryVector
Shower secondary eigen vector.
Definition: LArShowerPfo.h:113
const pandora::CartesianVector & lar_content::LArShowerPfo::GetShowerTertiaryVector ( ) const
inline

Get the shower tertiary eigen vector from 3d shower fit.

Returns
the shower tertiary eigen vector from 3d shower fit

Definition at line 212 of file LArShowerPfo.h.

213 {
214  return m_showerTertiaryVector;
215 }
pandora::CartesianVector m_showerTertiaryVector
Shower tertiary eigen vector.
Definition: LArShowerPfo.h:114
const pandora::CartesianVector & lar_content::LArShowerPfo::GetShowerVertex ( ) const
inline

Get the shower starting point from 3d shower fit.

Returns
the shower starting point from 3d shower fit

Definition at line 226 of file LArShowerPfo.h.

227 {
228  return m_showerVertex;
229 }
pandora::CartesianVector m_showerVertex
Shower starting point.
Definition: LArShowerPfo.h:116

Member Data Documentation

pandora::CartesianVector lar_content::LArShowerPfo::m_showerCentroid
private

Shower centroid from 3d shower fit.

Definition at line 110 of file LArShowerPfo.h.

pandora::CartesianVector lar_content::LArShowerPfo::m_showerDirection
private

Shower direction, primary eigen vector.

Definition at line 112 of file LArShowerPfo.h.

pandora::CartesianVector lar_content::LArShowerPfo::m_showerEigenValues
private

Shower eigenvalues from 3d PCA.

Definition at line 115 of file LArShowerPfo.h.

pandora::CartesianVector lar_content::LArShowerPfo::m_showerLength
private

Shower length and widths from 3d shower fit.

Definition at line 109 of file LArShowerPfo.h.

float lar_content::LArShowerPfo::m_showerOpeningAngle
private

Shower opening angle.

Definition at line 111 of file LArShowerPfo.h.

pandora::CartesianVector lar_content::LArShowerPfo::m_showerSecondaryVector
private

Shower secondary eigen vector.

Definition at line 113 of file LArShowerPfo.h.

pandora::CartesianVector lar_content::LArShowerPfo::m_showerTertiaryVector
private

Shower tertiary eigen vector.

Definition at line 114 of file LArShowerPfo.h.

pandora::CartesianVector lar_content::LArShowerPfo::m_showerVertex
private

Shower starting point.

Definition at line 116 of file LArShowerPfo.h.


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