Revision 716fb731a3c8c9b583235feddac21006994d9626 authored by Kyle Cranmer on 03 August 2011, 22:09:36 UTC, committed by Kyle Cranmer on 03 August 2011, 22:09:36 UTC

git-svn-id: http://root.cern.ch/svn/root/branches/v5-30-00-patches@40446 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 0db9ccb
Raw File
RooBanner.cxx
#include "RooFit.h"

#include "Rtypes.h"
#include "Rtypes.h"
#include "Riostream.h"

//////////////////////////////////////////////////////////////////////////////
// 
// BEGIN_HTML
// Print banner message when RooFit library is loaded
// END_HTML
//

const char* VTAG="3.17" ;

Int_t doBanner()

{
#ifndef __ROOFIT_NOBANNER
  cout << endl
  << "\033[1mRooFit v" << VTAG << " -- Developed by Wouter Verkerke and David Kirkby\033[0m " << endl 
              << "                Copyright (C) 2000-2011 NIKHEF, University of California & Stanford University" << endl 
              << "                All rights reserved, please read http://roofit.sourceforge.net/license.txt" << endl << endl ;
#endif
  return 0 ;
}

static Int_t dummy = doBanner() ;
back to top