![]() |
|
|||
File indexing completed on 2024-04-06 12:02:11
0001 #include "CondFormats/GBRForest/interface/GBRTree.h" 0002 0003 //_______________________________________________________________________ 0004 GBRTree::GBRTree(int nIntermediate, int nTerminal) { 0005 //special case, root node is terminal 0006 if (nIntermediate == 0) 0007 nIntermediate = 1; 0008 0009 fCutIndices.reserve(nIntermediate); 0010 fCutVals.reserve(nIntermediate); 0011 fLeftIndices.reserve(nIntermediate); 0012 fRightIndices.reserve(nIntermediate); 0013 fResponses.reserve(nTerminal); 0014 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |
![]() ![]() |