Changeset 273e668 in git for external/fastjet/JetDefinition.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/JetDefinition.hh
rf14bd6a r273e668 3 3 4 4 //FJSTARTHEADER 5 // $Id: JetDefinition.hh 3 523 2014-08-02 13:15:21Z salam$5 // $Id: JetDefinition.hh 3677 2014-09-09 22:45:25Z soyez $ 6 6 // 7 7 // Copyright (c) 2005-2014, Matteo Cacciari, Gavin P. Salam and Gregory Soyez … … 181 181 182 182 //====================================================================== 183 /// the various recombination schemes 183 /// The various recombination schemes 184 /// 185 /// Note that the schemes that recombine with non-linear weighting of 186 /// the directions (e.g. pt2, winner-takes-all) are collinear safe 187 /// only for algorithms with a suitable ordering of the 188 /// recombinations: orderings in which, for particles of comparable 189 /// energies, small-angle clusterings take place before large-angle 190 /// clusterings. This property is satisfied by all gen-kt algorithms. 191 /// 184 192 enum RecombinationScheme { 185 193 /// summing the 4-momenta … … 203 211 /// no preprocessing 204 212 BIpt2_scheme=6, 213 /// pt-based Winner-Takes-All (WTA) recombination: the 214 /// result of the recombination has the rapidity, azimuth and mass 215 /// of the the PseudoJet with the larger pt, and a pt equal to the 216 /// sum of the two pt's 217 WTA_pt_scheme=7, 218 /// mod-p-based Winner-Takes-All (WTA) recombination: the result of 219 /// the recombination gets the 3-vector direction and mass of the 220 /// PseudoJet with the larger |3-momentum| (modp), and a 221 /// |3-momentum| equal to the scalar sum of the two |3-momenta|. 222 WTA_modp_scheme=8, 223 // Energy-ordering can lead to dangerous situations with particles at 224 // rest. We instead implement the WTA_modp_scheme 225 // 226 // // energy-based Winner-Takes-All (WTA) recombination: the result of 227 // // the recombination gets the 3-vector direction and mass of the 228 // // PseudoJet with the larger energy, and an energy equal to the 229 // // to the sum of the two energies 230 // WTA_E_scheme=8, 205 231 /// for the user's external scheme 206 232 external_scheme = 99
Note:
See TracChangeset
for help on using the changeset viewer.