Back to home page

Project CMSSW displayed by LXR

 
 

    


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 }