//-------------------------------------------------------------------------- // // 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/EvtSVSNONCPEIGEN.hh // // Description: // // Modification history: // // DJL/RYD August 11, 1998 Module created // //------------------------------------------------------------------------ #ifndef EVTSVSNONCPEIGEN_HH #define EVTSVSNONCPEIGEN_HH #include "EvtGenBase/EvtDecayAmp.hh" class EvtParticle; class EvtSVSNONCPEIGEN:public EvtDecayAmp { public: EvtSVSNONCPEIGEN() {} virtual ~EvtSVSNONCPEIGEN(); std::string getName(); EvtDecayBase* clone(); void initProbMax(); void init(); void decay(EvtParticle *p); private: EvtComplex _A_f; EvtComplex _Abar_f; EvtComplex _A_fbar; EvtComplex _Abar_fbar; double _dm; double _phickm; }; #endif