Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/ThePEG/PDF/PDFBase.xh is written in an unsupported language. File is not indexed.

0001 // -*- C++ -*-
0002 //
0003 // PDFBase.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_PDFBase_XH
0010 #define ThePEG_PDFBase_XH
0011 //
0012 // This is the declarations of the exception classes used by the
0013 // PDFBase class.
0014 //
0015 
0016 #include "ThePEG/Interface/InterfaceBase.xh"
0017 
0018 namespace ThePEG {
0019 
0020 /** @cond EXCEPTIONCLASSES */
0021 /** Exception class used by RemnantHandler if unable to handle a
0022     specified particle. */
0023 struct RemnantHandlerCantHandle: public InterfaceException {
0024   /** Standard constructor. */
0025   RemnantHandlerCantHandle(string, string);
0026 };
0027 
0028 /** Exception class used by PDFBase if unable to handle a
0029     specified particle. */
0030 struct PDFWrongParticle: public InterfaceException {
0031   /** Standard constructor. */
0032   PDFWrongParticle(string p, string pdf, string mess);
0033 };
0034 
0035 /** Exception class used by PDFBase if values were outside limits. */
0036 struct PDFRange: public Exception {
0037   /** Standard constructor. */
0038   PDFRange(string pdf, string var, double val, double lim);
0039 };
0040 /** @endcond */
0041 
0042 }
0043 
0044 #endif /* ThePEG_PDFBase_XH */
0045