Skip to content

Commit

Permalink
revert not-fully backwards compatible change to ensure future compati…
Browse files Browse the repository at this point in the history
…bility with V6/7/8 photon energy regression
  • Loading branch information
bendavid committed Dec 19, 2013
1 parent 27b19cc commit 20836b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions interface/HybridGBRTreeD.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
std::vector<double> &Responses() { return fResponses; }
const std::vector<double> &Responses() const { return fResponses; }

std::vector<unsigned short> &CutIndices() { return fCutIndices; }
const std::vector<unsigned short> &CutIndices() const { return fCutIndices; }
std::vector<unsigned char> &CutIndices() { return fCutIndices; }
const std::vector<unsigned char> &CutIndices() const { return fCutIndices; }

std::vector<float> &CutVals() { return fCutVals; }
const std::vector<float> &CutVals() const { return fCutVals; }
Expand All @@ -59,7 +59,7 @@
const std::vector<std::vector<std::pair<float,float> > > &Limits() const { return fLimits; }

protected:
std::vector<unsigned short> fCutIndices;
std::vector<unsigned char> fCutIndices;
std::vector<float> fCutVals;
std::vector<int> fLeftIndices;
std::vector<int> fRightIndices;
Expand All @@ -68,7 +68,7 @@

private:

ClassDef(HybridGBRTreeD,3)
ClassDef(HybridGBRTreeD,2)

};

Expand Down

0 comments on commit 20836b5

Please sign in to comment.