LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
lar_content::KDTreeNodeInfoT< DATA, DIM > Class Template Reference

Data stored in each KDTree node. The dim1/dim2 fields are usually the duplication of some PFRecHit values (eta/phi or x/y). But in some situations, phi field is shifted by +-2.Pi. More...

#include "PreProcessingAlgorithm.h"

Public Member Functions

 KDTreeNodeInfoT ()
 Default constructor. More...
 
template<typename... Ts>
 KDTreeNodeInfoT (const DATA &d, Ts...dimargs)
 Constructor. More...
 

Public Attributes

DATA data
 
std::array< float, DIM > dims
 

Detailed Description

template<typename DATA, unsigned DIM>
class lar_content::KDTreeNodeInfoT< DATA, DIM >

Data stored in each KDTree node. The dim1/dim2 fields are usually the duplication of some PFRecHit values (eta/phi or x/y). But in some situations, phi field is shifted by +-2.Pi.

Definition at line 17 of file PreProcessingAlgorithm.h.

Constructor & Destructor Documentation

template<typename DATA , unsigned DIM>
lar_content::KDTreeNodeInfoT< DATA, DIM >::KDTreeNodeInfoT ( )
inline

Default constructor.

Definition at line 246 of file KDTreeLinkerToolsT.h.

246  :
247  data()
248 {
249 }
template<typename DATA , unsigned DIM>
template<typename... Ts>
lar_content::KDTreeNodeInfoT< DATA, DIM >::KDTreeNodeInfoT ( const DATA &  d,
Ts...  dimargs 
)
inline

Constructor.

Parameters
d
dimargs

Definition at line 255 of file KDTreeLinkerToolsT.h.

255  :
256  data(d),
257  dims{ {dimargs...} }
258 {
259 }
std::array< float, DIM > dims
Float_t d
Definition: plot.C:237

Member Data Documentation


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