//-------------------------------------------------------------------------- // // 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/EvtBcVMuNu.hh // // Description:Implementation of the model for semileptonic Bc decays // // Modification history: // // DJL April 20, 1998 Module created // //------------------------------------------------------------------------ #ifndef EVTBcVMuNu_HH #define EVTBcVMuNu_HH #include #include #include "EvtGenBase/EvtDecayAmp.hh" #include "EvtGenBase/EvtSemiLeptonicFF.hh" #include "EvtGenBase/EvtSemiLeptonicAmp.hh" class EvtParticle; class EvtBcVMuNu: public EvtDecayAmp { public: EvtBcVMuNu() {} virtual ~EvtBcVMuNu(); std::string getName(); EvtDecayBase* clone(); void decay(EvtParticle *p); void init(); virtual void initProbMax(); private: EvtSemiLeptonicFF *ffmodel; EvtSemiLeptonicAmp *calcamp; int whichfit; int idVector; }; #endif