//-------------------------------------------------------------------------- // // Environment: // This software is part of the EvtGen package developed jointly // for the BaBar and CLEO collaborations. If you use all or part // of it, please give an appropriate acknowledgement. // // Copyright Information: See EvtGen/COPYRIGHT // Copyright (C) 2004 Cornell // // Module: EvtGen/EvtVPHOtoVISRHi.hh // // Description: // // Modification history: // // Ryd March 20, 2004 Module created // //------------------------------------------------------------------------ #ifndef EVTVPHOTOVISRHI_HH #define EVTVPHOTOVISRHI_HH #include "EvtGenBase/EvtDecayAmp.hh" #include class EvtParticle; class EvtVPHOtoVISRHi:public EvtDecayAmp { public: EvtVPHOtoVISRHi() {} virtual ~EvtVPHOtoVISRHi(); std::string getName(); EvtDecayBase* clone(); void decay(EvtParticle *p); void init(); void initProbMax(); }; #endif