Changeset 1d208a2 in git for external/fastjet/internal
- Timestamp:
- Aug 30, 2016, 12:36:00 AM (8 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 6be4bc0
- Parents:
- d091310
- Location:
- external/fastjet/internal
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/internal/ClosestPair2D.hh
rd091310 r1d208a2 1 1 //FJSTARTHEADER 2 // $Id: ClosestPair2D.hh 3433 2014-07-23 08:17:03Z salam$2 // $Id: ClosestPair2D.hh 4059 2016-03-03 20:49:48Z soyez $ 3 3 // 4 4 // Copyright (c) 2005-2014, Matteo Cacciari, Gavin P. Salam and Gregory Soyez … … 38 38 #include "fastjet/internal/SearchTree.hh" 39 39 #include "fastjet/internal/MinHeap.hh" 40 #include "fastjet/SharedPtr.hh" 40 41 41 42 FASTJET_BEGIN_NAMESPACE // defined in fastjet/internal/base.hh … … 134 135 135 136 136 triplet< std::auto_ptr<Tree> > _trees;137 std::auto_ptr<MinHeap>_heap;137 triplet<SharedPtr<Tree> > _trees; 138 SharedPtr<MinHeap> _heap; 138 139 std::vector<Point> _points; 139 140 std::stack<Point *> _available_points; -
external/fastjet/internal/ClosestPair2DBase.hh
rd091310 r1d208a2 1 1 //FJSTARTHEADER 2 // $Id: ClosestPair2DBase.hh 3433 2014-07-23 08:17:03Z salam $2 // $Id: ClosestPair2DBase.hh 4049 2016-03-03 13:45:47Z salam $ 3 3 // 4 4 // Copyright (c) 2005-2014, Matteo Cacciari, Gavin P. Salam and Gregory Soyez … … 48 48 double x, y; 49 49 50 Coord2D() {};50 Coord2D() : x(0.0), y(0.0) {}; 51 51 52 52 Coord2D(double a, double b): x(a), y(b) {}; -
external/fastjet/internal/DnnPlane.hh
rd091310 r1d208a2 1 1 //FJSTARTHEADER 2 // $Id: DnnPlane.hh 391 8 2015-07-03 14:19:13Z salam $2 // $Id: DnnPlane.hh 3917 2015-07-03 14:07:50Z salam $ 3 3 // 4 4 // Copyright (c) 2005-2014, Matteo Cacciari, Gavin P. Salam and Gregory Soyez -
external/fastjet/internal/LazyTiling9Alt.hh
rd091310 r1d208a2 3 3 4 4 //FJSTARTHEADER 5 // $Id: LazyTiling9Alt.hh 380 8 2015-02-20 11:24:53Z soyez $5 // $Id: LazyTiling9Alt.hh 3807 2015-02-20 11:16:55Z soyez $ 6 6 // 7 7 // Copyright (c) 2005-2014, Matteo Cacciari, Gavin P. Salam and Gregory Soyez -
external/fastjet/internal/TilingExtent.hh
rd091310 r1d208a2 5 5 6 6 //FJSTARTHEADER 7 // $Id: TilingExtent.hh 3433 2014-07-23 08:17:03Z salam$7 // $Id: TilingExtent.hh 4034 2016-03-02 00:20:27Z soyez $ 8 8 // 9 9 // Copyright (c) 2005-2014, Matteo Cacciari, Gavin P. Salam and Gregory Soyez … … 46 46 TilingExtent(ClusterSequence & cs); 47 47 48 /// constructor that takes a list of PseudoJets 49 TilingExtent(const std::vector<PseudoJet> &particles); 50 48 51 /// returns the suggested minimum rapidity for the tiling 49 52 double minrap() const {return _minrap;} -
external/fastjet/internal/base.hh
rd091310 r1d208a2 1 1 2 2 //FJSTARTHEADER 3 // $Id: base.hh 3433 2014-07-23 08:17:03Z salam$3 // $Id: base.hh 4047 2016-03-03 13:21:49Z soyez $ 4 4 // 5 5 // Copyright (c) 2005-2014, Matteo Cacciari, Gavin P. Salam and Gregory Soyez … … 33 33 #define __FASTJET_FASTJET_BASE_HH__ 34 34 35 #include "fastjet/config.h" 36 35 37 /// \namespace fastjet 36 38 /// the FastJet namespace … … 43 45 #define FASTJET_END_NAMESPACE } 44 46 47 // define a macro to mark virtual function in derived classes as 48 // overriding the base-class definition 49 #ifdef FASTJET_HAVE_OVERRIDE 50 #define FASTJET_OVERRIDE override 51 #else 52 #define FASTJET_OVERRIDE 53 #endif 54 45 55 #endif // __FASTJET_FASTJET_BASE_HH__
Note:
See TracChangeset
for help on using the changeset viewer.