StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
EvtPHOTOS.hh
1 //--------------------------------------------------------------------------
2 //
3 // Environment:
4 // This software is part of the EvtGen package developed jointly
5 // for the BaBar and CLEO collaborations. If you use all or part
6 // of it, please give an appropriate acknowledgement.
7 //
8 // Copyright Information: See EvtGen/COPYRIGHT
9 // Copyright (C) 1998 Caltech, UCSB
10 //
11 // Module: EvtGen/EvtPHOTOS.hh
12 //
13 // Description: EvtGen's interface to PHOTOS for generation of
14 // QED final state radiation.
15 //
16 // Modification history:
17 //
18 // RYD March 24, 1998 Module created
19 // Lange April 25, 2002 - changed to derive from EvtAbsRadCorr
20 //
21 //------------------------------------------------------------------------
22 
23 #ifndef EVTPHOTOS_HH
24 #define EVTPHOTOS_HH
25 
26 #include "EvtGenBase/EvtAbsRadCorr.hh"
27 #include <string>
28 
29 class EvtParticle;
30 class EvtAbsExternalGen;
31 
32 class EvtPHOTOS : public EvtAbsRadCorr {
33 
34 public:
35 
36  EvtPHOTOS();
37  virtual ~EvtPHOTOS();
38 
39  virtual void doRadCorr(EvtParticle *p);
40 
41 private:
42 
43  EvtAbsExternalGen* _photosEngine;
44 
45 };
46 
47 #endif
48