Changeset 273e668 in git for external/fastjet/RectangularGrid.hh
- Timestamp:
- Oct 15, 2014, 10:55:55 AM (10 years ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/RectangularGrid.hh
rf14bd6a r273e668 88 88 /// \param rapmax the maximal absolute rapidity extent of the grid 89 89 /// \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), 92 92 _requested_drap(cell_size), _requested_dphi(cell_size) { 93 93 _setup_grid(); … … 103 103 /// a massless 4-vector at the center of the tile passes 104 104 /// 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, 106 106 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), 109 109 _tile_selector(tile_selector) 110 110 {
Note:
See TracChangeset
for help on using the changeset viewer.