00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include "QMCCopyright.h"
00014
00015 ostream & operator<<(ostream & strm, QMCCopyright & rhs)
00016 {
00017 string text = "";
00018
00019
00020
00021 text += " ___\n";
00022 text += " .=\" \"=._.---.\n";
00023 text += " .\" c \' Y\'`p\n";
00024 text += " / , `. w_/\n";
00025 text += " | \'-. / /\n";
00026 text += " _,..._| )_-\\ \\_=.\\\n";
00027 text += " `-....-\'`------)))`=-\'\"`\'\"\n";
00028
00029
00030
00031
00032 text += "\n";
00033 text += " QMcBeaver\n";
00034 text += "\n";
00035 text += " Version: " +
00036 StringManipulation::longToString(VERSION) + "\n";
00037 text += "\n";
00038 text += "\n";
00039 text += " Constructed by\n";
00040 text += "\n";
00041 text += " David Randall \"Chip\" Kent IV\n";
00042 text += " and\n";
00043 text += " Michael Todd Feldmann\n";
00044 text += "\n";
00045 text += " Copyright 2000-2003. All rights reserved.\n";
00046 text += "\n";
00047 text += "drkent@users.sourceforge.net feldmann@cacr.caltech.edu\n";
00048 text += "--------------------------------------------\n";
00049 text += "\n";
00050
00051
00052 text += "Copyright 2003 California Institute of Technology.\n";
00053 text += "\n";
00054 text += "To contact the original authors, write to: \n";
00055 text += "drkent@users.sourceforge.net\n";
00056 text += "or\n";
00057 text += "mtfeldmann@users.sourceforge.net \n";
00058 text += "\n";
00059 text += "\n";
00060 text += "This program is free software; you can redistribute it and/or modify\n";
00061 text += "it under the terms of the GNU General Public License as published by\n";
00062 text += "the Free Software Foundation and so long as the above copyright\n";
00063 text += "notice, this paragraph and the following three paragraphs appear in\n";
00064 text += "all copies. \n";
00065 text += "\n";
00066 text += "This program is distributed in the hope that it will be useful, but\n";
00067 text += "WITHOUT ANY WARRANTY; without even the implied warranty of\n";
00068 text += "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. In no event \n";
00069 text += "shall California Institute of Technology or the authors be liable \n";
00070 text += "to any party for direct, indirect, special, incidental or\n";
00071 text += "consequential damages, including lost profits, arising out of the use\n";
00072 text += "of this software and its documentation, even if the California\n";
00073 text += "Institute of Technology or the authors have been advised of the\n";
00074 text += "possibility of such damage. Lastly, the California Institute of\n";
00075 text += "Technology and the authors have no obligations to provide maintenance,\n";
00076 text += "support, updates, enhancements or modifications. \n";
00077 text += "\n";
00078 text += "To receive a copy of the GNU General Public License, go to:\n";
00079 text += "\n";
00080 text += "http://www.gnu.org/licenses/gpl.txt\n";
00081 text += "or write to:\n";
00082 text += "The Free Software Foundation, Inc.\n";
00083 text += "59 Temple Place, Suite 330\n";
00084 text += "Boston, MA 02111--1307 USA\n";
00085 text += "\n";
00086 text += "--------------------------------------------\n";
00087 text += "\n";
00088
00089
00090 text += "This SOFTWARE has been authored or contributed to by an\n";
00091 text += "employee or employees of the University of California,\n";
00092 text += "operator of the Los Alamos National Laboratory under Contract\n";
00093 text += "No. W-7405-ENG-36 with the U.S. Department of Energy. The\n";
00094 text += "U.S. Government has rights to use, reproduce, and distribute\n";
00095 text += "this SOFTWARE. Neither the Government nor the University\n";
00096 text += "makes any warranty, express or implied, or assumes any\n";
00097 text += "liability or responsibility for the use of this SOFTWARE. If\n";
00098 text += "SOFTWARE is modified to produce derivative works, such\n";
00099 text += "modified SOFTWARE should be clearly marked, so as not to\n";
00100 text += "confuse it with the version available from LANL.\n";
00101 text += "\n";
00102 text += "Additionally, this program is free software; you can\n";
00103 text += "distribute it and/or modify it under the terms of the GNU\n";
00104 text += "General Public License. Accordingly, this program is\n";
00105 text += "distributed in the hope that it will be useful, but WITHOUT\n";
00106 text += "ANY WARRANTY; without even the implied warranty of\n";
00107 text += "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See\n";
00108 text += "the GNU General Public License for more details.\n";
00109 text += "\n";
00110 text += "--------------------------------------------\n";
00111 text += "\n";
00112
00113 strm << text;
00114 return strm;
00115 }