Changes in external/fastjet/plugins/SISCone/siscone.cc [273e668:1d208a2] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/plugins/SISCone/siscone.cc
r273e668 r1d208a2 21 21 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA // 22 22 // // 23 // $Revision:: 371$//24 // $Date:: 201 4-09-09 10:05:32 +0200 (Tue, 09 Sep 2014) $//23 // $Revision:: 403 $// 24 // $Date:: 2016-05-19 16:52:05 +0200 (Thu, 19 May 2016) $// 25 25 /////////////////////////////////////////////////////////////////////////////// 26 26 27 //#ifdef HAVE_CONFIG_H28 27 #include "config.h" 29 //#else30 //#define PACKAGE_NAME "SISCone"31 //#define VERSION "3.0.0"32 //#warning "No config.h file available, using preset values"33 //#endif34 35 28 #include "ranlux.h" 36 29 #include "momentum.h" … … 254 247 // print the banner 255 248 if (_banner_ostr != 0){ 249 ios::fmtflags flags_to_restore(_banner_ostr->flags()); 250 256 251 (*_banner_ostr) << "#ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo" << endl; 257 252 (*_banner_ostr) << "# SISCone version " << setw(28) << left << siscone_version() << "o" << endl; … … 269 264 270 265 _banner_ostr->flush(); 266 _banner_ostr->flags(flags_to_restore); 271 267 } 272 268 } … … 279 275 * return SISCone package name. 280 276 * This is nothing but "SISCone", it is a replacement to the 281 * PACKAGE_NAME string defined in config.h and which is not282 * public by default.277 * SISCONE_PACKAGE_NAME string defined in config.h and which is not 278 * guaranteed to be public. 283 279 * return the SISCone name as a string 284 280 */ 285 281 string siscone_package_name(){ 286 return PACKAGE_NAME;282 return SISCONE_PACKAGE_NAME; 287 283 } 288 284 … … 293 289 */ 294 290 string siscone_version(){ 295 return VERSION;296 } 297 298 } 291 return SISCONE_VERSION; 292 } 293 294 }
Note:
See TracChangeset
for help on using the changeset viewer.