CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Protected Attributes | Private Member Functions | Friends
GBRForest2D Class Reference

#include <GBRForest2D.h>

Public Member Functions

 GBRForest2D ()
 
void GetResponse (const float *vector, double &x, double &y) const
 
void SetInitialResponse (double x, double y)
 
std::vector< GBRTree2D > & Trees ()
 
const std::vector< GBRTree2D > & Trees () const
 
 ~GBRForest2D ()
 

Protected Attributes

double fInitialResponseX
 
double fInitialResponseY
 
std::vector< GBRTree2DfTrees
 

Private Member Functions

template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 

Friends

class boost::serialization::access
 
template<typename CondSerializationT , typename Enabled >
struct cond::serialization::access
 

Detailed Description

Definition at line 25 of file GBRForest2D.h.

Constructor & Destructor Documentation

GBRForest2D::GBRForest2D ( )
GBRForest2D::~GBRForest2D ( )
inline

Definition at line 30 of file GBRForest2D.h.

30 {}

Member Function Documentation

void GBRForest2D::GetResponse ( const float *  vector,
double &  x,
double &  y 
) const
inline

Definition at line 49 of file GBRForest2D.h.

References fInitialResponseX, fInitialResponseY, and fTrees.

49  {
52  double tx, ty;
53  for (std::vector<GBRTree2D>::const_iterator it=fTrees.begin(); it!=fTrees.end(); ++it) {
54  it->GetResponse(vector,tx,ty);
55  x += tx;
56  y += ty;
57  }
58  return;
59 }
double fInitialResponseX
Definition: GBRForest2D.h:40
double fInitialResponseY
Definition: GBRForest2D.h:41
std::vector< GBRTree2D > fTrees
Definition: GBRForest2D.h:42
template<class Archive >
void GBRForest2D::serialize ( Archive &  ar,
const unsigned int  version 
)
private
void GBRForest2D::SetInitialResponse ( double  x,
double  y 
)
inline

Definition at line 34 of file GBRForest2D.h.

References fInitialResponseX, fInitialResponseY, x, and y.

std::vector<GBRTree2D>& GBRForest2D::Trees ( )
inline

Definition at line 36 of file GBRForest2D.h.

References fTrees.

36 { return fTrees; }
std::vector< GBRTree2D > fTrees
Definition: GBRForest2D.h:42
const std::vector<GBRTree2D>& GBRForest2D::Trees ( ) const
inline

Definition at line 37 of file GBRForest2D.h.

References fTrees.

37 { return fTrees; }
std::vector< GBRTree2D > fTrees
Definition: GBRForest2D.h:42

Friends And Related Function Documentation

friend class boost::serialization::access
friend

Definition at line 45 of file GBRForest2D.h.

template<typename CondSerializationT , typename Enabled >
friend struct cond::serialization::access
friend

Definition at line 45 of file GBRForest2D.h.

Member Data Documentation

double GBRForest2D::fInitialResponseX
protected

Definition at line 40 of file GBRForest2D.h.

Referenced by GetResponse(), and SetInitialResponse().

double GBRForest2D::fInitialResponseY
protected

Definition at line 41 of file GBRForest2D.h.

Referenced by GetResponse(), and SetInitialResponse().

std::vector<GBRTree2D> GBRForest2D::fTrees
protected

Definition at line 42 of file GBRForest2D.h.

Referenced by GetResponse(), and Trees().