1 /** 2 * @defgroup Header dependencies 3 */ 4 5 /** 6 * @file apbs.h 7 * @author Nathan Baker 8 * @brief Header file for header dependencies 9 * @ingroup Frontend 10 * @version $Id$ 11 * @attention 12 * @verbatim 13 * 14 * APBS -- Adaptive Poisson-Boltzmann Solver 15 * 16 * Nathan A. Baker (nathan.baker@pnnl.gov) 17 * Pacific Northwest National Laboratory 18 * 19 * Additional contributing authors listed in the code documentation. 20 * 21 * Copyright (c) 2010-2014 Battelle Memorial Institute. Developed at the 22 * Pacific Northwest National Laboratory, operated by Battelle Memorial 23 * Institute, Pacific Northwest Division for the U.S. Department of Energy. 24 * 25 * Portions Copyright (c) 2002-2010, Washington University in St. Louis. 26 * Portions Copyright (c) 2002-2010, Nathan A. Baker. 27 * Portions Copyright (c) 1999-2002, The Regents of the University of 28 * California. 29 * Portions Copyright (c) 1995, Michael Holst. 30 * All rights reserved. 31 * 32 * Redistribution and use in source and binary forms, with or without 33 * modification, are permitted provided that the following conditions are met: 34 * 35 * Redistributions of source code must retain the above copyright notice, this 36 * list of conditions and the following disclaimer. 37 * 38 * Redistributions in binary form must reproduce the above copyright notice, 39 * this list of conditions and the following disclaimer in the documentation 40 * and/or other materials provided with the distribution. 41 * 42 * Neither the name of the developer nor the names of its contributors may be 43 * used to endorse or promote products derived from this software without 44 * specific prior written permission. 45 * 46 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 47 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 48 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 49 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 50 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 51 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 52 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 53 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 54 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 55 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 56 * THE POSSIBILITY OF SUCH DAMAGE. 57 * 58 * @endverbatim 59 */ 60 61 #ifndef _APBSHEADERS_H_ 62 #define _APBSHEADERS_H_ 63 64 #include "apbscfg.h" 65 66 /* MALOC headers */ 67 #include "maloc/maloc.h" 68 69 /* Generic headers */ 70 #include "generic/nosh.h" 71 #include "generic/mgparm.h" 72 #include "generic/pbeparm.h" 73 #include "generic/femparm.h" 74 #include "generic/bemparm.h" 75 #include "generic/geoflowparm.h" 76 #include "generic/vacc.h" 77 #include "generic/valist.h" 78 #include "generic/vatom.h" 79 #include "generic/vcap.h" 80 #include "generic/vhal.h" 81 #include "generic/vpbe.h" 82 #include "generic/vstring.h" 83 #include "generic/vunit.h" 84 #include "generic/vparam.h" 85 #include "generic/vgreen.h" 86 87 //#include "geoflow/cpbconcz2.h" 88 89 /* MG headers */ 90 #include "mg/vgrid.h" 91 #include "mg/vmgrid.h" 92 #include "mg/vopot.h" 93 #include "mg/vpmg.h" 94 #include "mg/vpmgp.h" 95 96 /* FEM headers */ 97 #if defined(FETK_ENABLED) 98 #include "fem/vfetk.h" 99 #include "fem/vpee.h" 100 #endif 101 102 #endif /* _APBSHEADERS_H_ */ 103