Changes in external/fastjet/plugins/SISCone/siscone.h [273e668:d7d2da3] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/plugins/SISCone/siscone.h
r273e668 rd7d2da3 22 22 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA // 23 23 // // 24 // $Revision:: 369$//25 // $Date:: 2014-09-04 16:57:55 +0200 (Thu, 04 Sep 2014)$//24 // $Revision:: $// 25 // $Date:: $// 26 26 /////////////////////////////////////////////////////////////////////////////// 27 27 … … 79 79 80 80 /** 81 * compute the jets from a given particle set.82 * We are doing multiple passes such pass n_pass looks for jets among83 * all particles not put into jets during previous passes.84 * By default the number of passes is infinite (0).85 * \param _particles list of particles86 * \param _radius cone radius87 * \param _n_pass_max maximum number of passes (0=full search)88 * \param _ptmin minimum pT of the protojets89 * \param _ordering_scale the ordering scale to decide which stable90 * cone is removed91 *92 * Note that the Csplit_merge::SM_var2_hardest_cut_off cut is not93 * used in the progressive removal variant.94 *95 * \return the number of jets found.96 */97 int compute_jets_progressive_removal(std::vector<Cmomentum> &_particles, double _radius,98 int _n_pass_max=0, double _ptmin=0.0,99 Esplit_merge_scale _ordering_scale=SM_pttilde);100 101 /**102 81 * recompute the jets with a different overlap parameter. 103 82 * we use the same particles and R as in the preceeding call. … … 114 93 Esplit_merge_scale _split_merge_scale=SM_pttilde); 115 94 116 /// list of protocones found pass-by-pass (not filled by compute_jets_progressive_removal)95 /// list of protocones found pass-by-pass 117 96 std::vector<std::vector<Cmomentum> > protocones_list; 118 97 … … 146 125 bool rerun_allowed; ///< is recompute_jets allowed ? 147 126 static std::ostream * _banner_ostr; ///< stream to use for banners 148 149 /// ensure things are initialised150 void _initialise_if_needed();151 152 127 }; 153 128
Note:
See TracChangeset
for help on using the changeset viewer.