Fork me on GitHub

Ignore:
Timestamp:
Feb 12, 2019, 8:56:12 PM (6 years ago)
Author:
Pavel Demin <pavel-demin@…>
Branches:
ImprovedOutputFile, Timing, llp, master
Children:
341014c
Parents:
769f65b
Message:

update FastJet library to 3.3.2 and FastJet Contrib library to 1.041

Location:
external/fastjet/contribs/ValenciaPlugin
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • external/fastjet/contribs/ValenciaPlugin/AUTHORS

    r769f65b r45e58be  
    1 The ValenciaJetAlgorithm FastJet contrib was written and is maintained and developed by: Ignacio Garcia Garcia, Marcel Vos, IFIC (UVEG/CSIC) Valencia, Spain
     1The ValenciaPlugin FastJet contrib was written and is maintained and developed by: Ignacio Garcia Garcia, Marcel Vos, IFIC (UVEG/CSIC) Valencia, Spain
    22
    3 Acknowledging suggestions by Gavin P. Salam (CERN) and J. Thaler (MIT)
     3The first incarnation of the Valencia algorithm (with two parameters R and beta) was proposed "A robust jet reconstruction algorithm for high-energy lepton colliders", PLB 750 (2015) 95-99, arXiv:1404.4294
     4The authors acknowledge suggestions by Gavin P. Salam (CERN) and his help in assessing the IR safety of the algorithm
    45
    5 A preprint motivating the algorithm and describing its performance is available on: "A new jet algorithm for lepton colliders", arXiv:1404.4294 (submitted to PLB)
     6The VLC algorithm (with three parameters R, beta and gamma) is described in "Jet reconstruction at high-energy electron-positron colliders", EPJC 78 (2018) no. 2, 144. The addition of the gamma parameter was suggested by J. Thaler (MIT). The performance of the algorithm is evaluated in detail in this paper, in collaboration with Ph. Roloff, R. Simoniello (CERN) and M. Boronat, J. Fuster (IFIC)
    67
    78Please contact: marcel.vos@ific.uv.es for questions, queries and comments
  • external/fastjet/contribs/ValenciaPlugin/ChangeLog

    r769f65b r45e58be  
     122-12-2018: Gavin Salam <gavin.salam@cern.ch>
     2        * VERSION:
     3        * NEWS:
     4        updated version to 2.0.2
     5
     62018-12-18: Marcel Vos <marcel.vos@ific.uv.es>a
     7        * ValenciaPlugin.cc:
     8        Incorporates a modification suggested by
     9        Filip Zarnecki (Warsaw) to make sure the behaviour for negative
     10        beta is correct (added to trunk in june 2017 but left out of
     11        2.0.1)
     12
     132018-12-04: Marcel Vos <marcel.vos@ific.uv.es>
     14        * VERSION
     15        * NEWS
     16        updated version to 2.0.1
     17
     18        * ValenciaPlugin.cc:
     19        Bug fix: a bug was discovered in the plugin by Matthias Weber (CERN)
     20        the calculation of the distance diB assumed massless constituents.
     21        The impact on the results - jet energy and mass - is typically small,
     22        but can be non-negligible
     23
    12424-02-2015  Marcel Vos <marcel.vos@ific.uv.es>
    225
  • external/fastjet/contribs/ValenciaPlugin/NEWS

    r769f65b r45e58be  
     122 December 2018: bug-fix release 2.0.2, for negative beta
     204 December 2018: bug-fix release 2.0.1, for massive constituents
    1324 February 2015: version 2.0.0
    2421 February 2015: released 2.0-devel
  • external/fastjet/contribs/ValenciaPlugin/VERSION

    r769f65b r45e58be  
    1 2.0.0
     12.0.2
  • external/fastjet/contribs/ValenciaPlugin/ValenciaPlugin.cc

    r769f65b r45e58be  
    1 // $Id: ValenciaPlugin.cc 776 2015-02-24 17:53:27Z vos $
     1// $Id: ValenciaPlugin.cc 1209 2018-12-05 16:18:01Z 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     diB = pow(E,2*beta) * pow(jet.perp()/E,2*info->gamma()); 
     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());
    6970  }
    7071
     
    7879                   - nz*jet->nz;
    7980
    80     if (jet->E < E)
     81    if (pow(jet->E,2*beta) < pow(E,2*beta))
    8182      dij *= 2 * pow(jet->E,2*beta);
    8283    else
  • external/fastjet/contribs/ValenciaPlugin/ValenciaPlugin.hh

    r769f65b r45e58be  
    1 // $Id: ValenciaPlugin.hh 776 2015-02-24 17:53:27Z vos $
     1// $Id: ValenciaPlugin.hh 771 2015-02-21 16:40:07Z vos $
    22//
    33// Copyright (c) 2014, Marcel Vos and Ignacio Garcia
Note: See TracChangeset for help on using the changeset viewer.