Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • external/fastjet/contribs/ValenciaPlugin/ValenciaPlugin.cc

    r45e58be rf319c1d  
    1 // $Id: ValenciaPlugin.cc 1209 2018-12-05 16:18:01Z vos $
     1// $Id: ValenciaPlugin.cc 776 2015-02-24 17:53:27Z vos $
    22//
    33// Copyright (c) 2014, Marcel Vos and Ignacio Garcia
     
    6666    // E-to-the-2*beta times sin(polar angle)-to-the-2*gamma
    6767    if (E==0. || jet.perp()==0.) diB=0.;
    68     // modified diB in release 2.0.1   
    69     diB = pow(E,2*beta) * pow(jet.perp()/sqrt(jet.perp2()+jet.pz()*jet.pz()),2*info->gamma());
     68    diB = pow(E,2*beta) * pow(jet.perp()/E,2*info->gamma()); 
    7069  }
    7170
     
    7978                   - nz*jet->nz;
    8079
    81     if (pow(jet->E,2*beta) < pow(E,2*beta))
     80    if (jet->E < E)
    8281      dij *= 2 * pow(jet->E,2*beta);
    8382    else
Note: See TracChangeset for help on using the changeset viewer.