|
|
|||
File indexing completed on 2026-08-06 09:24:19
0001 // -*- C++ -*- 0002 #ifndef Herwig_RPVSSSVertex_H 0003 #define Herwig_RPVSSSVertex_H 0004 // 0005 // This is the declaration of the RPVSSSVertex class. 0006 // 0007 0008 #include "ThePEG/Helicity/Vertex/Scalar/SSSVertex.h" 0009 #include "Herwig/Models/Susy/MixingMatrix.h" 0010 0011 namespace Herwig { 0012 0013 using namespace ThePEG; 0014 0015 /** 0016 * Here is the documentation of the RPVSSSVertex class. 0017 * 0018 * @see \ref RPVSSSVertexInterfaces "The interfaces" 0019 * defined for RPVSSSVertex. 0020 */ 0021 class RPVSSSVertex: public Helicity::SSSVertex { 0022 0023 public: 0024 0025 /** 0026 * The default constructor. 0027 */ 0028 RPVSSSVertex(); 0029 0030 /** 0031 * Calculate the coupling for the vertex 0032 * @param q2 The scale to at which evaluate the coupling. 0033 * @param particle1 The first particle in the vertex. 0034 * @param particle2 The second particle in the vertex. 0035 * @param particle3 The third particle in the vertex. 0036 */ 0037 virtual void setCoupling(Energy2 q2, tcPDPtr particle1, tcPDPtr particle2, 0038 tcPDPtr particle3); 0039 0040 public: 0041 0042 /** @name Functions used by the persistent I/O system. */ 0043 //@{ 0044 /** 0045 * Function used to write out object persistently. 0046 * @param os the persistent output stream written to. 0047 */ 0048 void persistentOutput(PersistentOStream & os) const; 0049 0050 /** 0051 * Function used to read in object persistently. 0052 * @param is the persistent input stream read from. 0053 * @param version the version number of the object when written. 0054 */ 0055 void persistentInput(PersistentIStream & is, int version); 0056 //@} 0057 0058 /** 0059 * The standard Init function used to initialize the interfaces. 0060 * Called exactly once for each class by the class description system 0061 * before the main function starts or 0062 * when this class is dynamically loaded. 0063 */ 0064 static void Init(); 0065 0066 protected: 0067 0068 /** @name Clone Methods. */ 0069 //@{ 0070 /** 0071 * Make a simple clone of this object. 0072 * @return a pointer to the new object. 0073 */ 0074 virtual IBPtr clone() const; 0075 0076 /** Make a clone of this object, possibly modifying the cloned object 0077 * to make it sane. 0078 * @return a pointer to the new object. 0079 */ 0080 virtual IBPtr fullclone() const; 0081 //@} 0082 0083 protected: 0084 0085 /** @name Standard Interfaced functions. */ 0086 //@{ 0087 /** 0088 * Initialize this object after the setup phase before saving an 0089 * EventGenerator to disk. 0090 * @throws InitException if object could not be initialized properly. 0091 */ 0092 virtual void doinit(); 0093 //@} 0094 0095 private: 0096 0097 /** 0098 * The assignment operator is private and must never be called. 0099 * In fact, it should not even be implemented. 0100 */ 0101 RPVSSSVertex & operator=(const RPVSSSVertex &) = delete; 0102 0103 private: 0104 0105 /** 0106 * Which types of interaction to include 0107 */ 0108 unsigned int interactions_; 0109 0110 /** 0111 * The scale at which the coupling was last evaluated. 0112 */ 0113 Energy2 q2Last_; 0114 0115 /** 0116 * The value of \f$ \sqrt{4\pi\alpha}\f$ when it was last evaluated. 0117 */ 0118 double gLast_; 0119 0120 /** 0121 * Sfermion mixing 0122 */ 0123 //@{ 0124 /** 0125 * Stau mixing 0126 */ 0127 tMixingMatrixPtr stau_; 0128 0129 /** 0130 * Sbottom mixing 0131 */ 0132 tMixingMatrixPtr sbottom_; 0133 0134 /** 0135 * Stop mixing 0136 */ 0137 tMixingMatrixPtr stop_; 0138 //@} 0139 0140 /** 0141 * Couplings of the scalar Higgs bosons to other scalars 0142 */ 0143 vector<vector<vector<complex<Energy> > > > scalarScalarScalar_; 0144 0145 /** 0146 * Couplings of the scalar Higgs bosons to pseudoscalars 0147 */ 0148 vector<vector<vector<complex<Energy> > > > scalarPseudoPseudo_; 0149 0150 /** 0151 * Couplings of the neutral scalar Higgs bosons to two charged Higgs bosons 0152 */ 0153 vector<vector<vector<complex<Energy> > > > scalarChargedCharged_; 0154 0155 /** 0156 * Couplings of the neutral pseudoscalar Higgs bosons to two charged Higgs bosons 0157 */ 0158 vector<vector<vector<complex<Energy> > > > pseudoChargedCharged_; 0159 0160 /** 0161 * Couplings of the scalar Higgs bosons to up squarks 0162 */ 0163 vector<vector<vector<vector<complex<Energy> > > > > scalarSup_; 0164 0165 /** 0166 * Couplings of the scalar Higgs bosons to down squarks 0167 */ 0168 vector<vector<vector<vector<complex<Energy> > > > > scalarSdown_; 0169 0170 /** 0171 * Couplings of the pseudo Higgs bosons to up squarks 0172 */ 0173 vector<vector<complex<Energy> > > pseudoSup_; 0174 0175 /** 0176 * Couplings of the pseudo Higgs bosons to down squarks 0177 */ 0178 vector<vector<complex<Energy> > > pseudoSdown_; 0179 0180 /** 0181 * Couplings of the scalar Higgs bosons to sneutinos 0182 */ 0183 vector<vector<complex<Energy> > > scalarSneutrino_; 0184 0185 /** 0186 * Couplings of the scalar Higgs bosons to charged sleptons 0187 */ 0188 vector<vector<vector<vector<complex<Energy> > > > > scalarSlepton_; 0189 0190 /** 0191 * Couplings of the pseudo Higgs bosons to charged sleptons 0192 */ 0193 vector<vector<complex<Energy> > > pseudoSlepton_; 0194 0195 /** 0196 * Couplings of the charged Higgs to squarks 0197 */ 0198 vector<vector<vector<vector<complex<Energy> > > > > chargedSquark_; 0199 0200 /** 0201 * Couplings of the charged Higgs to sleptons 0202 */ 0203 vector<vector<vector<complex<Energy> > > > chargedSlepton_; 0204 0205 }; 0206 0207 } 0208 0209 #endif /* Herwig_RPVSSSVertex_H */
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|