Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • external/fastjet/plugins/SISCone/siscone.cc

    r1d208a2 r273e668  
    2121// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA //
    2222//                                                                           //
    23 // $Revision:: 403                                                          $//
    24 // $Date:: 2016-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)                     $//
    2525///////////////////////////////////////////////////////////////////////////////
    2626
     27//#ifdef HAVE_CONFIG_H
    2728#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
    2835#include "ranlux.h"
    2936#include "momentum.h"
     
    247254  // print the banner
    248255  if (_banner_ostr != 0){
    249     ios::fmtflags flags_to_restore(_banner_ostr->flags());
    250 
    251256    (*_banner_ostr) << "#ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo" << endl;
    252257    (*_banner_ostr) << "#                    SISCone   version " << setw(28) << left << siscone_version() << "o" << endl;
     
    264269
    265270    _banner_ostr->flush();
    266     _banner_ostr->flags(flags_to_restore);
    267271  }
    268272}
     
    275279 * return SISCone package name.
    276280 * This is nothing but "SISCone", it is a replacement to the
    277  * SISCONE_PACKAGE_NAME string defined in config.h and which is not
    278  * guaranteed to be public.
     281 * PACKAGE_NAME string defined in config.h and which is not
     282 * public by default.
    279283 * return the SISCone name as a string
    280284 */
    281285string siscone_package_name(){
    282   return SISCONE_PACKAGE_NAME;
     286  return PACKAGE_NAME;
    283287}
    284288
     
    289293 */
    290294string 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.