//-------------------------------------------------------------------------- // // 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) 1998 Caltech, UCSB // // Module: EvtGen/EvtCBTo3piP00.hh // // Description: // // Modification history: // // DJL/RYD August 11, 1998 Module created // //------------------------------------------------------------------------ #ifndef EVTCBTO3PIP00_HH #define EVTCBTO3PIP00_HH #include "EvtGenBase/EvtDecayAmp.hh" class EvtParticle; class EvtCBTo3piP00:public EvtDecayAmp { public: EvtCBTo3piP00() {} virtual ~EvtCBTo3piP00(); std::string getName(); EvtDecayBase* clone(); void init(); void initProbMax(); void decay(EvtParticle *p); }; #endif