Changeset 45e58be in git for external/fastjet/contribs
- Timestamp:
- Feb 12, 2019, 8:56:12 PM (6 years ago)
- Branches:
- ImprovedOutputFile, Timing, llp, master
- Children:
- 341014c
- Parents:
- 769f65b
- Location:
- external/fastjet/contribs/ValenciaPlugin
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/contribs/ValenciaPlugin/AUTHORS
r769f65b r45e58be 1 The Valencia JetAlgorithmFastJet contrib was written and is maintained and developed by: Ignacio Garcia Garcia, Marcel Vos, IFIC (UVEG/CSIC) Valencia, Spain1 The ValenciaPlugin FastJet contrib was written and is maintained and developed by: Ignacio Garcia Garcia, Marcel Vos, IFIC (UVEG/CSIC) Valencia, Spain 2 2 3 Acknowledging suggestions by Gavin P. Salam (CERN) and J. Thaler (MIT) 3 The 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 4 The authors acknowledge suggestions by Gavin P. Salam (CERN) and his help in assessing the IR safety of the algorithm 4 5 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)6 The 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) 6 7 7 8 Please contact: marcel.vos@ific.uv.es for questions, queries and comments -
external/fastjet/contribs/ValenciaPlugin/ChangeLog
r769f65b r45e58be 1 22-12-2018: Gavin Salam <gavin.salam@cern.ch> 2 * VERSION: 3 * NEWS: 4 updated version to 2.0.2 5 6 2018-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 13 2018-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 1 24 24-02-2015 Marcel Vos <marcel.vos@ific.uv.es> 2 25 -
external/fastjet/contribs/ValenciaPlugin/NEWS
r769f65b r45e58be 1 22 December 2018: bug-fix release 2.0.2, for negative beta 2 04 December 2018: bug-fix release 2.0.1, for massive constituents 1 3 24 February 2015: version 2.0.0 2 4 21 February 2015: released 2.0-devel -
external/fastjet/contribs/ValenciaPlugin/VERSION
r769f65b r45e58be 1 2.0. 01 2.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 $ 2 2 // 3 3 // Copyright (c) 2014, Marcel Vos and Ignacio Garcia … … 66 66 // E-to-the-2*beta times sin(polar angle)-to-the-2*gamma 67 67 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()); 69 70 } 70 71 … … 78 79 - nz*jet->nz; 79 80 80 if ( jet->E < E)81 if (pow(jet->E,2*beta) < pow(E,2*beta)) 81 82 dij *= 2 * pow(jet->E,2*beta); 82 83 else -
external/fastjet/contribs/ValenciaPlugin/ValenciaPlugin.hh
r769f65b r45e58be 1 // $Id: ValenciaPlugin.hh 77 6 2015-02-24 17:53:27Z vos $1 // $Id: ValenciaPlugin.hh 771 2015-02-21 16:40:07Z vos $ 2 2 // 3 3 // Copyright (c) 2014, Marcel Vos and Ignacio Garcia
Note:
See TracChangeset
for help on using the changeset viewer.