APFEL 4.8.0
A PDF evolution library in C++
Loading...
Searching...
No Matches
messages.h
Go to the documentation of this file.
1//
2// APFEL++ 2017
3//
4// Author: Valerio Bertone: valerio.bertone@cern.ch
5//
6
7#pragma once
8
9#include <sstream>
10#include <iostream>
11
15namespace apfel
16{
22
30 void SetVerbosityLevel(int const& vl);
31
37
43 void report(std::string const& what);
44
51 void info(std::string const& tag, std::string const& what);
52
59 void warning(std::string const& tag, std::string const& what);
60
68 std::string error(std::string const& tag, std::string const& what);
69
74 void Banner();
76}
Namespace for all APFEL++ functions and classes.
Definition alphaqcd.h:14
void Banner()
Function that prints the APFEL++ banner on screen. Effective according to the verbosity level.
void report(std::string const &what)
Function that prints information on screen. Effective according to the verbosity level.
int GetVerbosityLevel()
Get Verbosity level.
std::string error(std::string const &tag, std::string const &what)
Function that prints information on screen. Always effective.
void warning(std::string const &tag, std::string const &what)
Function that prints warnings on screen. Effective according to the verbosity level.
void SetVerbosityLevel(int const &vl)
Set Verbosity level.
void info(std::string const &tag, std::string const &what)
Function that prints information on screen. Effective according to the verbosity level.