]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TEvtGen/EvtGenModels/EvtPHOTOS.hh
Not needed.
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenModels / 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
31 class EvtPHOTOS : public EvtAbsRadCorr{
32
33 public:
34     
35     //The photon type to use
36     EvtPHOTOS(std::string photontype="gamma"); 
37               
38     void doRadCorr(EvtParticle *p);
39
40 private:
41     std::string _photontype;
42
43 };
44
45 #endif
46