Skip to content

Commit

Permalink
TRestComponentDataSet. Updating to REST_StringHelper::IntegerToBinary…
Browse files Browse the repository at this point in the history
… method
  • Loading branch information
jgalan committed Dec 5, 2023
1 parent 9e12d89 commit cc6e256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/framework/sensitivity/src/TRestComponentDataSet.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ Double_t TRestComponentDataSet::GetRate(std::vector<Double_t> point) {

Double_t sum = 0;
for (int n = 0; n < nPoints; n++) {
std::vector<int> cell = TRestTools::IntegerToBinary(n, GetDimensions());
std::vector<int> cell = REST_StringHelper::IntegerToBinary(n, GetDimensions());

Double_t weightDistance = 1;
int cont = 0;
Expand Down

0 comments on commit cc6e256

Please sign in to comment.