Changeset d69dfe4 in git for external/fastjet/plugins
- Timestamp:
- Nov 20, 2013, 9:52:59 PM (11 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- fc39685
- Parents:
- 88a9b72
- Location:
- external/fastjet/plugins
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/plugins/CDFCones/JetCluAlgorithm.cc
r88a9b72 rd69dfe4 28 28 #include <algorithm> 29 29 #include <cmath> 30 #include <cstdlib> 30 31 31 32 #include <fastjet/internal/base.hh> … … 79 80 if ((iEtaPreClusterTower >= 8 && iEtaPreClusterTower < 14) || (iEtaPreClusterTower >= 38 && iEtaPreClusterTower < 44)) 80 81 iPhiPreClusterTower = iPhiPreClusterTower/2; 81 int dIEta = abs(iEtaSeedTower - iEtaPreClusterTower);82 int dIPhi = abs(iPhiSeedTower - iPhiPreClusterTower);82 int dIEta = std::abs(iEtaSeedTower - iEtaPreClusterTower); 83 int dIPhi = std::abs(iPhiSeedTower - iPhiPreClusterTower); 83 84 if(dIPhi > 12) 84 85 dIPhi = 24 - dIPhi; -
external/fastjet/plugins/D0RunICone/fastjet/D0RunIConePlugin.hh
r88a9b72 rd69dfe4 30 30 //ENDHEADER 31 31 32 #include " D0RunIBaseConePlugin.hh"32 #include "fastjet/D0RunIBaseConePlugin.hh" 33 33 34 34 // questionable whether this should be in fastjet namespace or not... -
external/fastjet/plugins/D0RunICone/fastjet/D0RunIpre96ConePlugin.hh
r88a9b72 rd69dfe4 30 30 //ENDHEADER 31 31 32 #include " D0RunIBaseConePlugin.hh"32 #include "fastjet/D0RunIBaseConePlugin.hh" 33 33 34 34 // questionable whether this should be in fastjet namespace or not... -
external/fastjet/plugins/D0RunIICone/ConeSplitMerge.hpp
r88a9b72 rd69dfe4 75 75 { 76 76 public: 77 bool operator()(const ProtoJet<Item> & first, const ProtoJet<Item> & second) 77 bool operator()(const ProtoJet<Item> & first, const ProtoJet<Item> & second) const 78 78 { 79 79 if ( first.pT() > second.pT() ) return true; -
external/fastjet/plugins/GridJet/fastjet/GridJetPlugin.hh
r88a9b72 rd69dfe4 75 75 virtual double R() const; 76 76 77 /// returns the actual rapidity spacing of the grid 78 double drap() const {return _dy;} 79 /// returns the actual phi spacing of the grid 80 double dphi() const {return _dphi;} 81 /// returns the minimum rapidity of the grid 82 double rapmin() const {return _ymin;} 83 /// returns the maximum rapidity of the grid 84 double rapmax() const {return _ymax;} 85 77 86 private: 78 87 -
external/fastjet/plugins/SISCone/AUTHORS
r88a9b72 rd69dfe4 7 7 8 8 (2) PH-TH, CERN, CH-1211 Geneva 23, Switzerland; 9 Physics Department, Princeton University, Princeton NJ 08544, USA;10 9 LPTHE, UPMC (Univ. Paris 6), 75252 Paris cedex 05, France. 11 10 … … 14 13 15 14 email : soyez@fastjet.fr 16 salam@lpthe.jussieu.fr15 gavin.salam@cern.ch -
external/fastjet/plugins/SISCone/SISConePlugin.cc
r88a9b72 rd69dfe4 5 5 6 6 // sisocne stuff 7 #include " momentum.h"8 #include "siscone .h"7 #include "siscone/momentum.h" 8 #include "siscone/siscone.h" 9 9 10 10 // other stuff -
external/fastjet/plugins/SISCone/config.h
r88a9b72 rd69dfe4 49 49 50 50 /* Define to the full name and version of this package. */ 51 #define PACKAGE_STRING "SISCone 2.0. 5"51 #define PACKAGE_STRING "SISCone 2.0.6" 52 52 53 53 /* Define to the one symbol short name of this package. */ … … 55 55 56 56 /* Define to the home page for this package. */ 57 #define PACKAGE_URL "" 57 /* #undef PACKAGE_URL */ 58 58 59 59 /* Define to the version of this package. */ 60 #define PACKAGE_VERSION "2.0. 5"60 #define PACKAGE_VERSION "2.0.6" 61 61 62 62 /* Define to 1 if you have the ANSI C header files. */ … … 64 64 65 65 /* Version number of package */ 66 #define VERSION "2.0. 5"66 #define VERSION "2.0.6" -
external/fastjet/plugins/SISCone/siscone.cc
r88a9b72 rd69dfe4 29 29 //#else 30 30 //#define PACKAGE_NAME "SISCone" 31 //#define VERSION " 1.4.0-devel"31 //#define VERSION "2.0.6" 32 32 //#warning "No config.h file available, using preset values" 33 33 //#endif
Note:
See TracChangeset
for help on using the changeset viewer.