Page MenuHomec4science

tamaas.hh
No OneTemporary

File Metadata

Created
Wed, Jul 31, 16:12

tamaas.hh

/**
*
* @author Lucas Frérot <lucas.frerot@epfl.ch>
* @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
*
* @section LICENSE
*
* Copyright (©) 2016 EPFL (Ecole Polytechnique Fédérale de
* Lausanne) Laboratory (LSMS - Laboratoire de Simulation en Mécanique des
* Solides)
*
* Tamaas is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Tamaas is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Tamaas. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef TAMAAS_HH
#define TAMAAS_HH
#include <exception>
#include <string>
#include <complex>
/* -------------------------------------------------------------------------- */
/// Namespace macros
#define __BEGIN_TAMAAS__ namespace tamaas {
#define __END_TAMAAS__ }
/* -------------------------------------------------------------------------- */
__BEGIN_TAMAAS__
void initialize();
void finalize();
/* -------------------------------------------------------------------------- */
/// Common types definitions
typedef double Real;
typedef unsigned int UInt;
typedef int Int;
typedef std::complex<Real> complex;
static Real zero_threshold = 1e-14;
/* -------------------------------------------------------------------------- */
class SurfaceException : public std::exception {
public:
SurfaceException(const std::string & mesg){
msg = mesg;
}
virtual const char* what() const throw(){
return msg.c_str();
}
private:
std::string msg;
};
/* -------------------------------------------------------------------------- */
#define SURFACE_FATAL(mesg) { \
std::stringstream sstr; \
sstr \
<< __FILE__ \
<< ":" << __LINE__ << ":FATAL: " \
<< mesg << std::endl; \
std::cerr.flush(); \
throw SurfaceException(sstr.str()); \
}
__END_TAMAAS__
/* -------------------------------------------------------------------------- */
#endif // TAMAAS_HH

Event Timeline