Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • external/fastjet/RectangularGrid.hh

    r1d208a2 r554babf  
    33
    44//FJSTARTHEADER
    5 // $Id: RectangularGrid.hh 4047 2016-03-03 13:21:49Z soyez $
     5// $Id: RectangularGrid.hh 3771 2014-12-22 21:13:22Z salam $
    66//
    77// Copyright (c) 2005-2014, Matteo Cacciari, Gavin P. Salam and Gregory Soyez
     
    118118  RectangularGrid();
    119119
    120   virtual int n_tiles() const FASTJET_OVERRIDE {return _ntotal;}
     120  virtual int n_tiles() const {return _ntotal;}
    121121
    122   virtual int n_good_tiles() const FASTJET_OVERRIDE {return _ngood;}
     122  virtual int n_good_tiles() const {return _ngood;}
    123123
    124124  // this was being kept inline, but it seems to make little
    125125  // difference whether it is or not (at least on Gavin's mac)
    126   virtual int tile_index(const PseudoJet & p) const FASTJET_OVERRIDE;
     126  virtual int tile_index(const PseudoJet & p) const;
    127127
    128128  /// returns whether a given tile is good
    129129  // tested in "issue" 2014-08-08-testing-rect-grid
    130   virtual bool tile_is_good(int itile) const FASTJET_OVERRIDE {
    131     return _tile_selector.worker() ? _is_good[itile] : true;
    132   }
     130  virtual bool tile_is_good(int itile) const {return _tile_selector.worker() ? _is_good[itile] : true;}
    133131
    134132  /// returns the area of tile itile.
    135   virtual double tile_area(int /* itile */) const FASTJET_OVERRIDE {
    136     return mean_tile_area();
    137   }
     133  virtual double tile_area(int /* itile */) const {return mean_tile_area();}
    138134
    139135  /// returns the mean area of tiles.
    140   virtual double mean_tile_area() const FASTJET_OVERRIDE {return _dphi*_dy;};
     136  virtual double mean_tile_area() const {return _dphi*_dy;};
    141137
    142138  /// returns a textual description of the grid
    143   virtual std::string description() const FASTJET_OVERRIDE;
     139  virtual std::string description() const;
    144140 
    145141  /// returns the minimum rapidity extent of the grid
     
    153149
    154150  /// returns true if the grid is in a suitably initialised state
    155   virtual bool is_initialised() const FASTJET_OVERRIDE {return _ntotal > 0;}
     151  virtual bool is_initialised() const {return _ntotal > 0;}
    156152
    157153private:
Note: See TracChangeset for help on using the changeset viewer.