thepeg is hosted by Hepforge, IPPP Durham
ThePEG  2.2.1
BeamParticleData.xh
1 // -*- C++ -*-
2 //
3 // BeamParticleData.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_BeamParticleData_XH
10 #define ThePEG_BeamParticleData_XH
11 //
12 // This is the declarations of the exception classes used by the
13 // BeamParticleData class.
14 //
15 
16 // #include "BeamParticleData.fh"
17 #include "ThePEG/Interface/InterfaceBase.xh"
18 
19 namespace ThePEG {
20 
21 /** @cond EXCEPTIONCLASSES */
22 /** Exception class used by BeamParticleData if a specified PDF cannot
23  * handle the particle. */
24 struct BeamParticleWrongPDF: public InterfaceException {
25  /** Standard constructor. */
26  BeamParticleWrongPDF(string p, string pdf);
27 };
28 /** @endcond */
29 
30 }
31 
32 #endif /* ThePEG_BeamParticleData_XH */
33