Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 423311 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-5 / +5 lines)
Line  Link Here
0
-- include/fastjet/NNH.hh
0
++ include/fastjet/NNH.hh
Lines 199-205 Link Here
199
  // initialise the basic jet info 
199
  // initialise the basic jet info 
200
  for (int i = 0; i< n; i++) {
200
  for (int i = 0; i< n; i++) {
201
    //jetA->init(jets[i], i);
201
    //jetA->init(jets[i], i);
202
    init_jet(jetA, jets[i], i);
202
    this->init_jet(jetA, jets[i], i);
203
    where_is[i] = jetA;
203
    where_is[i] = jetA;
204
    jetA++; // move on to next entry of briefjets
204
    jetA++; // move on to next entry of briefjets
205
  }
205
  }
Lines 276-282 Link Here
276
276
277
  // initialise jetB based on the new jet
277
  // initialise jetB based on the new jet
278
  //jetB->init(jet, index);
278
  //jetB->init(jet, index);
279
  init_jet(jetB, jet, index);
279
  this->init_jet(jetB, jet, index);
280
  // and record its position (making sure we have the space)
280
  // and record its position (making sure we have the space)
281
  if (index >= int(where_is.size())) where_is.resize(2*index);
281
  if (index >= int(where_is.size())) where_is.resize(2*index);
282
  where_is[jetB->index()] = jetB;
282
  where_is[jetB->index()] = jetB;
283
-- plugins/D0RunIICone/ILConeAlgorithm.hpp
283
++ plugins/D0RunIICone/ILConeAlgorithm.hpp
Lines 337-343 Link Here
337
	    if(RD2((*tk)->y(),(*tk)->phi(),Yst,PHIst) <= radius2) 
337
	    if(RD2((*tk)->y(),(*tk)->phi(),Yst,PHIst) <= radius2) 
338
	       {
338
	       {
339
		 //cout << "add item to *tk" << endl;
339
		 //cout << "add item to *tk" << endl;
340
		addItem(*tk);
340
		this->addItem(*tk);
341
	      }
341
	      }
342
	  }
342
	  }
343
#endif
343
#endif

Return to bug 423311