Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-08-06 09:20:08

0001 
0002 /***********************************************************************
0003 * Copyright 1998-2020 CERN for the benefit of the EvtGen authors       *
0004 *                                                                      *
0005 * This file is part of EvtGen.                                         *
0006 *                                                                      *
0007 * EvtGen is free software: you can redistribute it and/or modify       *
0008 * it under the terms of the GNU General Public License as published by *
0009 * the Free Software Foundation, either version 3 of the License, or    *
0010 * (at your option) any later version.                                  *
0011 *                                                                      *
0012 * EvtGen is distributed in the hope that it will be useful,            *
0013 * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
0014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
0015 * GNU General Public License for more details.                         *
0016 *                                                                      *
0017 * You should have received a copy of the GNU General Public License    *
0018 * along with EvtGen.  If not, see <https://www.gnu.org/licenses/>.     *
0019 ***********************************************************************/
0020 
0021 #ifndef EVTYMSTOYNSPIPICLEO_HH
0022 #define EVTYMSTOYNSPIPICLEO_HH
0023 
0024 // #include "EvtGenBase/EvtDecayProb.hh"
0025 #include "EvtGenBase/EvtDecayAmp.hh"
0026 
0027 class EvtParticle;
0028 
0029 // Description: This model is based on matrix element method used by
0030 //              CLEO in Phys.Rev.D76:072001,2007 to model the dipion mass
0031 //              and helicity angle distribution in the decays Y(mS) -> pi pi Y(nS),
0032 //              where m,n are integers and m>n and m<4.
0033 //              This model has two parameters, Re(B/A) and Im(B/A), which
0034 //              are coefficients of the matrix element's terms determined by
0035 //              the CLEO fits.
0036 //
0037 // Example:
0038 //
0039 // Decay  Upsilon(3S)
0040 //  1.0000    Upsilon      pi+  pi-     YMSTOYNSPIPICLEO -2.523 1.189;
0041 // Enddecay
0042 // Decay  Upsilon(3S)
0043 //  1.0000    Upsilon(2S)  pi+  pi-     YMSTOYNSPIPICLEO -0.395 0.001;
0044 // Enddecay
0045 // Decay  Upsilon(2S)
0046 //  1.0000    Upsilon      pi+  pi-     YMSTOYNSPIPICLEO -0.753 0.000;
0047 // Enddecay
0048 //
0049 //   --> the order of parameters is: Re(B/A) Im(B/A)
0050 
0051 class EvtYmSToYnSpipiCLEO : public EvtDecayAmp {
0052     //EvtDecayProb  {
0053 
0054   public:
0055     std::string getName() override;
0056     EvtDecayBase* clone() override;
0057 
0058     void decay( EvtParticle* p ) override;
0059     void init() override;
0060     void initProbMax() override;
0061 };
0062 
0063 #endif