Changes in external/fastjet/contribs/RecursiveTools/README [cb80e6f:b7b836a] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/contribs/RecursiveTools/README
rcb80e6f rb7b836a 100 100 A default SoftDrop groomer can be created via: 101 101 102 double z_cut = 0.10; 102 103 double beta = 2.0; 103 double z_cut = 0.10;104 104 double R0 = 1.0; // this is the default value 105 SoftDrop sd( beta,z_cut,R0);105 SoftDrop sd(z_cut,beta,R0); 106 106 107 107 and acts on a desired jet as … … 137 137 further substructure is found (i.e. corresponds to taking N=infinity). 138 138 139 double z_cut = 0.10; 139 140 double beta = 2.0; 140 double z_cut = 0.10;141 141 double R0 = 1.0; // this is the default value 142 142 int N = -1; 143 RecursiveSoftDrop rsd( beta, z_cut, N, R0);143 RecursiveSoftDrop rsd(z_cut, beta, N, R0); 144 144 145 145 One then acts on a jet as … … 217 217 not met, only the hardest of the two objects is kept for further 218 218 clustering and the softest is rejected. 219 220 BottomUpSoftDrop takes the same arguments as SoftDrop, and a groomer221 can be created with:222 223 double beta = 2.0;224 double z_cut = 0.10;225 double R0 = 1.0; // this is the default value226 BottomUpSoftDrop busd(beta,z_cut,R0);227 228 One then acts on a jet as229 230 PseudoJet groomed_jet = busd(jet)231 219 232 220 ------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.