]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TEvtGen/EvtGenExternal/EvtPHOTOS.hh
Handle expressions with negations (Diego)
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenExternal / EvtPHOTOS.hh
CommitLineData
da0e9ce3 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
29class EvtParticle;
0ca57c2f 30class EvtAbsExternalGen;
da0e9ce3 31
0ca57c2f 32class EvtPHOTOS : public EvtAbsRadCorr {
da0e9ce3 33
34public:
35
0ca57c2f 36 EvtPHOTOS();
37 virtual ~EvtPHOTOS();
38
39 virtual void doRadCorr(EvtParticle *p);
da0e9ce3 40
41private:
0ca57c2f 42
43 EvtAbsExternalGen* _photosEngine;
da0e9ce3 44
45};
46
47#endif
48