Changeset 675 for trunk/c++_tools/random


Ignore:
Timestamp:
Oct 10, 2006, 2:08:45 PM (17 years ago)
Author:
Jari Häkkinen
Message:

References #83. Changing project name to yat. Compilation will fail in this revision.

Location:
trunk/c++_tools/random
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/c++_tools/random/Makefile.am

    r580 r675  
    55# Copyright (C) 2005, 2006 Jari Häkkinen
    66#
    7 # This file is part of the thep c++ tools library,
    8 #                                http://lev.thep.lu.se/trac/c++_tools
     7# This file is part of the yat library, http://lev.thep.lu.se/trac/yat
    98#
    10 # The c++ tools library is free software; you can redistribute it
     9# The yat library is free software; you can redistribute it
    1110# and/or modify it under the terms of the GNU General Public License as
    1211# published by the Free Software Foundation; either version 2 of the
    1312# License, or (at your option) any later version.
    1413#
    15 # The c++ library is distributed in the hope that it will be useful,
     14# The yat library is distributed in the hope that it will be useful,
    1615# but WITHOUT ANY WARRANTY; without even the implied warranty of
    1716# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     
    2726  random.cc
    2827
    29 include_randomdir = $(includedir)/c++_tools/random
     28include_randomdir = $(includedir)/yat/random
    3029
    3130include_random_HEADERS = \
  • trunk/c++_tools/random/random.cc

    r674 r675  
    44  Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson
    55
    6   This file is part of the thep c++ tools library,
    7                                 http://lev.thep.lu.se/trac/c++_tools
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
    87
    9   The c++ tools library is free software; you can redistribute it
    10   and/or modify it under the terms of the GNU General Public License
    11   as published by the Free Software Foundation; either version 2 of
    12   the License, or (at your option) any later version.
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
    1312
    14   The c++ tools library is distributed in the hope that it will be
    15   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
    16   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    1716  General Public License for more details.
    1817
     
    2322*/
    2423
    25 #include <c++_tools/random/random.h>
    26 #include <c++_tools/statistics/Histogram.h>
     24#include "yat/random/random.h"
     25#include "yat/statistics/Histogram.h"
    2726
    2827#include <fstream>
  • trunk/c++_tools/random/random.h

    r674 r675  
     1#ifndef _theplu_random_
     2#define _theplu_random_
     3
    14// $Id$
    25
     
    47  Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson
    58
    6   This file is part of the thep c++ tools library,
    7                                 http://lev.thep.lu.se/trac/c++_tools
    8 
    9   The c++ tools library is free software; you can redistribute it
    10   and/or modify it under the terms of the GNU General Public License
    11   as published by the Free Software Foundation; either version 2 of
    12   the License, or (at your option) any later version.
    13 
    14   The c++ tools library is distributed in the hope that it will be
    15   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
    16   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    1719  General Public License for more details.
    1820
     
    2325*/
    2426
    25 #ifndef _theplu_random_
    26 #define _theplu_random_
    27 
    28 #include <c++_tools/statistics/Histogram.h>
     27#include "yat/statistics/Histogram.h"
    2928
    3029#include <gsl/gsl_rng.h>
Note: See TracChangeset for help on using the changeset viewer.