Line data Source code
1 : //* This file is part of SALAMANDER: Software for Advanced Large-scale Analysis of MAgnetic confinement for Numerical Design, Engineering & Research, 2 : //* A multiphysics application for modeling plasma facing components 3 : //* https://github.com/idaholab/salamander 4 : //* https://mooseframework.inl.gov/salamander 5 : //* 6 : //* SALAMANDER is powered by the MOOSE Framework 7 : //* https://www.mooseframework.inl.gov 8 : //* 9 : //* Licensed under LGPL 2.1, please see LICENSE for details 10 : //* https://www.gnu.org/licenses/lgpl-2.1.html 11 : //* 12 : //* Copyright 2025, Battelle Energy Alliance, LLC 13 : //* ALL RIGHTS RESERVED 14 : //* 15 : 16 : #include "SalamanderHeader.h" 17 : #include <sstream> 18 : 19 : namespace SalamanderHeader 20 : { 21 : std::string 22 1518 : header() 23 : { 24 1518 : std::stringstream header; 25 : header << "\n\n" 26 : << " ____ _ _ _ __ __ _ _ _ ____ _____ ____ \n" 27 : << " / ___| / \\ | | / \\ | \\/ | / \\ | \\ | | _ \\| ____| _ \\ \n" 28 : << " \\___ \\ / _ \\ | | / _ \\ | |\\/| | / _ \\ | \\| | | | | _| | |_) | \n" 29 : << " ___) / ___ \\| |___ / ___ \\| | | |/ ___ \\| |\\ | |_| | |___| _ < \n" 30 : << " |____/_/ \\_\\_____/_/ \\_\\_| |_/_/ \\_\\_| \\_|____/|_____|_| \\_\\ \n" 31 : << "\n\n" 32 : << "SALAMANDER: Software for Advanced Large-scale Analysis of MAgnetic confinement for Numerical Design, Engineering & Research \n" 33 : << "\n\n" 34 : << "Copyright 2025, Battelle Energy Alliance, LLC \n" 35 : << "ALL RIGHTS RESERVED \n" 36 : << "\n\n" 37 : << "NOTICE: These data were produced by BATTELLE ENERGY ALLIANCE, LLC under Contract \n" 38 : << "No. DE-AC07-05ID14517 with the Department of Energy. For ten(10) years from \n" 39 : << "June 13, 2024, the Government is granted for itself and others acting on its behalf \n" 40 : << "a nonexclusive, paid-up, irrevocable worldwide license in this data to reproduce, \n" 41 : << "prepare derivative works, and perform publicly and display publicly, by or on \n" 42 : << "behalf of the Government. There is provision for the possible extension of the \n" 43 : << "term of this license. Subsequent to that period or any extension granted, the \n" 44 : << "Government is granted for itself and others acting on its behalf a nonexclusive, \n" 45 : << "paid-up, irrevocable worldwide license in this data to reproduce, prepare \n" 46 : << "derivative works, distribute copies to the public, perform publicly and display \n" 47 : << "publicly, and to permit others to do so. The specific term of the license can be \n" 48 : << "identified by inquiry made to Contractor or DOE. NEITHER THE UNITED STATES NOR \n" 49 : << "THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, MAKES ANY \n" 50 : << "WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY \n" 51 : << "FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY DATA, APPARATUS, PRODUCT, \n" 52 : << "OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE WOULD NOT INFRINGE PRIVATELY \n" 53 : << "OWNED RIGHTS. \n" 54 1518 : << "\n\n"; 55 1518 : return header.str(); 56 1518 : } 57 : } // namespace SalamanderHeader