Changeset cb80e6f in git for external/fastjet/contribs/RecursiveTools/README
- Timestamp:
- Mar 25, 2021, 9:55:59 AM (4 years ago)
- Branches:
- master
- Children:
- 13331dc
- Parents:
- 5eda6767
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/contribs/RecursiveTools/README
r5eda6767 rcb80e6f 100 100 A default SoftDrop groomer can be created via: 101 101 102 double beta = 2.0; 102 103 double z_cut = 0.10; 103 double beta = 2.0;104 104 double R0 = 1.0; // this is the default value 105 SoftDrop sd( z_cut,beta,R0);105 SoftDrop sd(beta,z_cut,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 beta = 2.0; 139 140 double z_cut = 0.10; 140 double beta = 2.0;141 141 double R0 = 1.0; // this is the default value 142 142 int N = -1; 143 RecursiveSoftDrop rsd( z_cut, beta, N, R0);143 RecursiveSoftDrop rsd(beta, z_cut, 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 groomer 221 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 value 226 BottomUpSoftDrop busd(beta,z_cut,R0); 227 228 One then acts on a jet as 229 230 PseudoJet groomed_jet = busd(jet) 219 231 220 232 ------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.