Go to the documentation of this file.00001
00002 #ifndef EGAMMAOBJECTS_GBRForest
00003 #define EGAMMAOBJECTS_GBRForest
00004
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00018
00019 #include <vector>
00020 #include "GBRTree.h"
00021
00022
00023 namespace TMVA {
00024 class MethodBDT;
00025 }
00026
00027 class GBRForest {
00028
00029 public:
00030
00031 GBRForest();
00032 explicit GBRForest(const TMVA::MethodBDT *bdt);
00033 virtual ~GBRForest();
00034
00035 double GetResponse(const float* vector) const;
00036
00037 std::vector<GBRTree> &Trees() { return fTrees; }
00038
00039 protected:
00040 double fInitialResponse;
00041 std::vector<GBRTree> fTrees;
00042
00043 };
00044
00045
00046 inline double GBRForest::GetResponse(const float* vector) const {
00047 double response = fInitialResponse;
00048 for (std::vector<GBRTree>::const_iterator it=fTrees.begin(); it!=fTrees.end(); ++it) {
00049 response += it->GetResponse(vector);
00050 }
00051 return response;
00052 }
00053
00054 #endif