thepeg
is hosted by
Hepforge
,
IPPP Durham
ThePEG
2.3.0
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
Variables
Typedefs
a
b
c
d
e
f
h
i
l
m
p
q
r
s
t
v
x
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
v
w
x
z
Enumerations
Enumerator
a
b
c
d
e
f
i
m
n
p
r
s
t
u
v
w
Related Functions
a
b
c
d
e
h
i
l
m
o
p
r
s
x
Files
File List
File Members
All
Macros
Interface
InterfaceBase.xh
1
// -*- C++ -*-
2
//
3
// InterfaceBase.xh is a part of ThePEG - Toolkit for HEP Event Generation
4
// Copyright (C) 1999-2019 Leif Lonnblad
5
//
6
// ThePEG is licenced under version 3 of the GPL, see COPYING for details.
7
// Please respect the MCnet academic guidelines, see GUIDELINES for details.
8
//
9
#ifndef ThePEG_InterfaceBase_XH
10
#define ThePEG_InterfaceBase_XH
11
//
12
// This is the declarations of the exception classes used by the
13
// InterfaceBase class.
14
//
15
16
#include "InterfaceBase.fh"
17
#include "ThePEG/Utilities/Exception.h"
18
19
namespace ThePEG {
20
21
/** @cond EXCEPTIONCLASSES */
22
/** Exception class used as base class for errors detected by
23
* interface classes. */
24
struct InterfaceException: public Exception {
25
/** Standard constructor. */
26
InterfaceException() {};
27
};
28
29
/** Exception class used when an interface is called for an object of
30
* the wrong class. */
31
struct InterExClass: public InterfaceException {
32
/** Standard constructor. */
33
InterExClass(const InterfaceBase & i, const InterfacedBase & o);
34
};
35
36
/** Exception class used in case an interface is not properly
37
* setup. */
38
struct InterExSetup: public InterfaceException {
39
/** Standard constructor. */
40
InterExSetup(const InterfaceBase & i, const InterfacedBase & o);
41
};
42
43
/** Exception class used in case of an unkown error whenn accessing an
44
* object via an interface. */
45
struct InterExUnknown: public InterfaceException {
46
/** Standard constructor. */
47
InterExUnknown(const InterfaceBase & i, const InterfacedBase & o);
48
};
49
50
/** Exception class used in case an a read-only interface is used to
51
* try to change an object. */
52
struct InterExReadOnly: public InterfaceException {
53
/** Standard constructor. */
54
InterExReadOnly(const InterfaceBase & i, const InterfacedBase & o);
55
};
56
57
/** Exception class used when a reference non-nullable interface tries
58
to set a reference to null. */
59
struct InterExNoNull: public InterfaceException {
60
/** Standard constructor. */
61
InterExNoNull(const InterfaceBase & i, const InterfacedBase & o);
62
};
63
/** @endcond */
64
65
}
66
67
#endif /* ThePEG_InterfaceBase_XH */
Generated on Thu Jun 20 2024 14:47:00 for ThePEG by
1.9.6