thepeg is hosted by Hepforge, IPPP Durham
ThePEG  2.2.1
MECuts.xh
1 // -*- C++ -*-
2 //
3 // MECuts.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_MECuts_XH
10 #define ThePEG_MECuts_XH
11 //
12 // This is the declarations of the exception classes used by the
13 // MECuts class.
14 //
15 
16 #include "ThePEG/Interface/Command.xh"
17 
18 namespace ThePEG {
19 
20 /** @cond EXCEPTIONCLASSES */
21 /** Exception class used by MECuts to signal inconsistent cuts. */
22 struct MECutSetup: public Exception {
23  /** Default constuctor. */
24  MECutSetup();
25 };
26 
27 /** Exception class used by MECuts to signal zero intervals. */
28 struct MECutZeroInterval: public UpdateException {
29  /** Standard constuctor. */
30  MECutZeroInterval(const MECuts &, string);
31 };
32 /** @endcond */
33 
34 }
35 
36 #endif /* ThePEG_MECuts_XH */
37