1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Fix FTBFS with GCC 15
Author: Adrian Bunk <bunk@debian.org>
Bug-Debian: https://bugs.debian.org/1096611
Origin: upstream, 3.5.1
--- fastjet-3.4.0+dfsg.orig/plugins/D0RunIICone/ProtoJet.hpp
+++ fastjet-3.4.0+dfsg/plugins/D0RunIICone/ProtoJet.hpp
@@ -195,7 +195,7 @@ void ProtoJet<Item>::NowStable() {
template<class Item>
void ProtoJet<Item>::print(std::ostream& os) const {
- os<<"y phi Et = ("<<_y<<", "<<_phi<<", "<<this->_Et<<")"<<std::endl;
+ os<<"y phi pT = ("<<_y<<", "<<_phi<<", "<<this->_pT<<")"<<std::endl;
os<< " members= " << std::endl;
typename std::list<const Item*>::const_iterator i;
for(i = _LItems.begin(); i != _LItems.end(); ++i)
|