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