Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • external/fastjet/contribs/RecursiveTools/README

    rcb80e6f rb7b836a  
    100100A default SoftDrop groomer can be created via:
    101101
     102   double z_cut = 0.10;
    102103   double beta  = 2.0;
    103    double z_cut = 0.10;
    104104   double R0    = 1.0; // this is the default value
    105    SoftDrop sd(beta,z_cut,R0);
     105   SoftDrop sd(z_cut,beta,R0);
    106106
    107107and acts on a desired jet as
     
    137137further substructure is found (i.e. corresponds to taking N=infinity).
    138138
     139   double z_cut = 0.10;
    139140   double beta  = 2.0;
    140    double z_cut = 0.10;
    141141   double R0    = 1.0; // this is the default value
    142142   int N        = -1; 
    143    RecursiveSoftDrop rsd(beta, z_cut, N, R0);
     143   RecursiveSoftDrop rsd(z_cut, beta, N, R0);
    144144
    145145One then acts on a jet as
     
    217217not met, only the hardest of the two objects is kept for further
    218218clustering 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)
    231219
    232220------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.