--- file_not_specified_in_diff +++ file_not_specified_in_diff @@ -, +, @@ --- include/fastjet/NNH.hh +++ include/fastjet/NNH.hh @@ -199,7 +199,7 @@ // initialise the basic jet info for (int i = 0; i< n; i++) { //jetA->init(jets[i], i); - init_jet(jetA, jets[i], i); + this->init_jet(jetA, jets[i], i); where_is[i] = jetA; jetA++; // move on to next entry of briefjets } @@ -276,7 +276,7 @@ // initialise jetB based on the new jet //jetB->init(jet, index); - init_jet(jetB, jet, index); + this->init_jet(jetB, jet, index); // and record its position (making sure we have the space) if (index >= int(where_is.size())) where_is.resize(2*index); where_is[jetB->index()] = jetB; --- plugins/D0RunIICone/ILConeAlgorithm.hpp +++ plugins/D0RunIICone/ILConeAlgorithm.hpp @@ -337,7 +337,7 @@ if(RD2((*tk)->y(),(*tk)->phi(),Yst,PHIst) <= radius2) { //cout << "add item to *tk" << endl; - addItem(*tk); + this->addItem(*tk); } } #endif