Changeset cb80e6f in git for external/fastjet/plugins/SISCone
- Timestamp:
- Mar 25, 2021, 9:55:59 AM (4 years ago)
- Branches:
- master
- Children:
- 13331dc
- Parents:
- 5eda6767
- Location:
- external/fastjet/plugins/SISCone
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/plugins/SISCone/AUTHORS
r5eda6767 rcb80e6f 6 6 France 7 7 8 (2) PH-TH, CERN, CH-1211 Geneva 23, Switzerland; 8 (2) Rudolf Peierls Centre for Theoretical Physics, Parks Road, Oxford OX1 3PU, UK; 9 PH-TH, CERN, CH-1211 Geneva 23, Switzerland; 9 10 LPTHE, UPMC (Univ. Paris 6), 75252 Paris cedex 05, France. 10 11 11 phone : +33 69 08 40 1112 +41 22 767 246213 14 12 email : soyez@fastjet.fr 15 gavin.salam@ cern.ch13 gavin.salam@physics.ox.ac.uk -
external/fastjet/plugins/SISCone/config.h
r5eda6767 rcb80e6f 83 83 /* Define to the full name and version of this package. */ 84 84 #ifndef SISCONE_PACKAGE_STRING 85 #define SISCONE_PACKAGE_STRING "SISCone 3.0. 4"85 #define SISCONE_PACKAGE_STRING "SISCone 3.0.5" 86 86 #endif 87 87 … … 98 98 /* Define to the version of this package. */ 99 99 #ifndef SISCONE_PACKAGE_VERSION 100 #define SISCONE_PACKAGE_VERSION "3.0. 4"100 #define SISCONE_PACKAGE_VERSION "3.0.5" 101 101 #endif 102 102 … … 111 111 /* Version number of package */ 112 112 #ifndef SISCONE_VERSION 113 #define SISCONE_VERSION "3.0. 4"113 #define SISCONE_VERSION "3.0.5" 114 114 #endif 115 115 -
external/fastjet/plugins/SISCone/config_raw.h
r5eda6767 rcb80e6f 48 48 49 49 /* Define to the full name and version of this package. */ 50 #define PACKAGE_STRING "SISCone 3.0. 4"50 #define PACKAGE_STRING "SISCone 3.0.5" 51 51 52 52 /* Define to the one symbol short name of this package. */ … … 57 57 58 58 /* Define to the version of this package. */ 59 #define PACKAGE_VERSION "3.0. 4"59 #define PACKAGE_VERSION "3.0.5" 60 60 61 61 /* Define to 1 if you have the ANSI C header files. */ … … 66 66 67 67 /* Version number of package */ 68 #define VERSION "3.0. 4"68 #define VERSION "3.0.5" -
external/fastjet/plugins/SISCone/geom_2d.h
r5eda6767 rcb80e6f 22 22 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA // 23 23 // // 24 // $Revision:: 268$//25 // $Date:: 20 09-03-12 21:24:16 +0100 (Thu, 12 Mar 2009) $//24 // $Revision:: 422 $// 25 // $Date:: 2020-04-22 11:51:09 +0200 (Wed, 22 Apr 2020) $// 26 26 /////////////////////////////////////////////////////////////////////////////// 27 27 … … 153 153 /// return the cell index corrsponding to an eta value 154 154 inline unsigned int get_eta_cell(double eta){ 155 return (unsigned int) (1 << ((int) (32*((eta-eta_min)/(eta_max-eta_min)))));155 return (unsigned int) (1u << ((int) (32*((eta-eta_min)/(eta_max-eta_min))))); 156 156 } 157 157 158 158 /// return the cell index corrsponding to a phi value 159 159 inline unsigned int get_phi_cell(double phi){ 160 return (unsigned int) (1 << ((int) (32*phi/twopi+16)%32));160 return (unsigned int) (1u << ((int) (32*phi/twopi+16)%32)); 161 161 } 162 162 };
Note:
See TracChangeset
for help on using the changeset viewer.