Changeset 10e33bc in git for external/fastjet/LazyTiling9Alt.cc
- Timestamp:
- Jun 26, 2015, 9:03:11 PM (9 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 1bc87da
- Parents:
- 8497ac6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/LazyTiling9Alt.cc
r8497ac6 r10e33bc 1 1 //FJSTARTHEADER 2 // $Id: LazyTiling9Alt.cc 3 477 2014-07-29 14:34:39Z salam$2 // $Id: LazyTiling9Alt.cc 3808 2015-02-20 11:24:53Z soyez $ 3 3 // 4 4 // Copyright (c) 2005-2014, Matteo Cacciari, Gavin P. Salam and Gregory Soyez … … 319 319 for (Tile::TileFnPair * near_tile = tile.begin_tiles; near_tile != tile.end_tiles; near_tile++){ 320 320 if ((near_tile->first)->tagged) continue; 321 double dist = (tile.*(near_tile->second))(jet); 321 // here we are not allowed to miss a tile due to some rounding 322 // error. We therefore allow for a margin of security 323 double dist = (tile.*(near_tile->second))(jet) - tile_edge_security_margin; 322 324 // cout << " max info looked at tile " << *near_tile - &_tiles[0] 323 325 // << ", dist = " << dist << " " << (*near_tile)->max_NN_dist
Note:
See TracChangeset
for help on using the changeset viewer.