Fork me on GitHub

Ignore:
Timestamp:
Oct 15, 2014, 10:55:55 AM (10 years ago)
Author:
Pavel Demin <pavel.demin@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
35b9204, b25d4cf
Parents:
f14bd6a
git-author:
Pavel Demin <pavel.demin@…> (10/10/14 08:56:40)
git-committer:
Pavel Demin <pavel.demin@…> (10/15/14 10:55:55)
Message:

upgrade FastJet to version 3.1.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • external/fastjet/RectangularGrid.hh

    rf14bd6a r273e668  
    8888  ///  \param rapmax     the maximal absolute rapidity extent of the grid
    8989  ///  \param cell_size  the grid spacing (equivalently, cell size)
    90   RectangularGrid(double rapmax, double cell_size) :
    91       _ymax(rapmax), _ymin(-rapmax),
     90  RectangularGrid(double rapmax_in, double cell_size) :
     91      _ymax(rapmax_in), _ymin(-rapmax_in),
    9292      _requested_drap(cell_size), _requested_dphi(cell_size) {
    9393    _setup_grid();
     
    103103  ///                        a massless 4-vector at the center of the tile passes
    104104  ///                        the selection
    105   RectangularGrid(double rapmin, double rapmax, double drap, double dphi,
     105  RectangularGrid(double rapmin_in, double rapmax_in, double drap_in, double dphi_in,
    106106                  Selector tile_selector = Selector())
    107     : _ymax(rapmax), _ymin(rapmin),
    108       _requested_drap(drap), _requested_dphi(dphi),
     107    : _ymax(rapmax_in), _ymin(rapmin_in),
     108      _requested_drap(drap_in), _requested_dphi(dphi_in),
    109109      _tile_selector(tile_selector)
    110110  {
Note: See TracChangeset for help on using the changeset viewer.