Warning, /include/ThePEG/PDT/DecayMode.xh is written in an unsupported language. File is not indexed.
0001 // -*- C++ -*-
0002 //
0003 // DecayMode.xh is a part of ThePEG - Toolkit for HEP Event Generation
0004 // Copyright (C) 1999-2019 Leif Lonnblad
0005 //
0006 // ThePEG is licenced under version 3 of the GPL, see COPYING for details.
0007 // Please respect the MCnet academic guidelines, see GUIDELINES for details.
0008 //
0009 #ifndef ThePEG_DecayMode_XH
0010 #define ThePEG_DecayMode_XH
0011 //
0012 // This is the declarations of the exception classes used by the
0013 // DecayMode class.
0014 //
0015
0016 #include "ThePEG/Interface/InterfaceBase.xh"
0017
0018 namespace ThePEG {
0019
0020 /** @cond EXCEPTIONCLASSES */
0021 /** Exception class used if a DecayMode is found to be inconsistent
0022 during the setup phase. */
0023 class DecModNoAccept: public UpdateException {
0024 public:
0025 /** Standard constructor. */
0026 DecModNoAccept(string, string);
0027 };
0028
0029 /** Exception class used if a DecayMode is found to be inconsistent
0030 during the setup phase. */
0031 class DecModSetupNoAccept: public SetupException {
0032 public:
0033 /** Standard constructor. */
0034 DecModSetupNoAccept(string, string);
0035 };
0036
0037 /** Exception class used by DecayMode if rebinding fails. */
0038 class DecModRebind: public RebindException {
0039 public:
0040 /** Standard constructor. */
0041 DecModRebind(string, string);
0042 };
0043 /** @endcond */
0044
0045 }
0046
0047 #endif /* ThePEG_DecayMode_XH */
0048