133 {
134
135
136 int fermiFunction = (int)args[1];
137 _mB = args[2];
138 _mb = args[3];
139 _mu = args[4];
140 _lam1 = args[5];
141 _delta = args[6];
142 _z = args[7];
143 _nIntervalS = args[8];
144 _nIntervalmH = args[9];
145 std::vector<double> mHVect(int(_nIntervalmH+1.0));
146 massHad = new double[int(_nIntervalmH+1.0)];
147 brHad = new double[int(_nIntervalmH+1.0)];
148 intervalMH=_nIntervalmH;
149
150
151 report(
WARNING,
"EvtGen") <<
"EvtBtoXsgammaKagan: calculating new hadronic mass spectra. This takes a while..." << endl;
152
153
154
155
156
157 double _mubar = _mu;
158 _mW = 80.33;
159 _mt = 175.0;
160 _alpha = 1./137.036;
161 _lambdabar = _mB - _mb;
162 _kappabar = 3.382 - 4.14*(sqrt(_z) - 0.29);
166 _rer2 = -4.092 + 12.78*(sqrt(_z) -.29);
167 _gam77 = 32./3.;
168 _gam27 = 416./81.;
169 _gam87 = -32./9.;
170 _lam2 = .12;
171 _beta0 = 23./3.;
172 _beta1 = 116./3.;
173 _alphasmZ = .118;
174 _mZ = 91.187;
175 _ms = _mb/50.;
176
177 double eGammaMin = 0.5*_mB*(1. - _delta);
178 double eGammaMax = 0.5*_mB;
179 double yMin = 2.*eGammaMin/_mB;
180 double yMax = 2.*eGammaMax/_mB;
181 double _CKMrat= 0.976;
182 double Nsl = 1.0;
183
184
189
190
191 _etamu = _alphasmW/_alphasmu;
192 _kSLemmu = (12./23.)*((1./_etamu) -1.);
195
196
197
198 std::vector<double> s22Coeffs(int(_nIntervalS+1.0));
199 std::vector<double> s27Coeffs(int(_nIntervalS+1.0));
200 std::vector<double> s28Coeffs(int(_nIntervalS+1.0));
201
202 double dy = (yMax - yMin)/_nIntervalS;
203 double yp = yMin;
204
205 std::vector<double> sCoeffs(1);
206 sCoeffs[0] = _z;
207
208
209 EvtItgPtrFunction *mys22Func = new EvtItgPtrFunction(&s22Func, 0., yMax+0.1, sCoeffs);
210 EvtItgPtrFunction *mys27Func = new EvtItgPtrFunction(&s27Func, 0., yMax+0.1, sCoeffs);
211
212
213 EvtItgAbsIntegrator *mys22Simp = new EvtItgSimpsonIntegrator(*mys22Func, 1.0e-4, 20);
214 EvtItgAbsIntegrator *mys27Simp = new EvtItgSimpsonIntegrator(*mys27Func, 1.0e-4, 50);
215
216 int i;
217
218 for (i=0;i<int(_nIntervalS+1.0);i++) {
219
220 s22Coeffs[i] = (16./27.)*mys22Simp->
evaluate(1.0e-20,yp);
221 s27Coeffs[i] = (-8./9.)*_z*mys27Simp->
evaluate(1.0e-20,yp);
222 s28Coeffs[i] = -s27Coeffs[i]/3.;
223 yp = yp + dy;
224
225 }
226
227 delete mys22Func;
228 delete mys27Func;
229 delete mys22Simp;
230 delete mys27Simp;
231
232
233
234 std::vector<double> FermiCoeffs(6);
235 std::vector<double> varCoeffs(3);
236 std::vector<double> DeltaCoeffs(1);
237 std::vector<double> s88Coeffs(2);
238 std::vector<double> sInitCoeffs(3);
239
240 varCoeffs[0] = _mB;
241 varCoeffs[1] = _mb;
242 varCoeffs[2] = 0.;
243
244 DeltaCoeffs[0] = _alphasmu;
245
246 s88Coeffs[0] = _mb;
247 s88Coeffs[1] = _ms;
248
249 sInitCoeffs[0] = _nIntervalS;
250 sInitCoeffs[1] = yMin;
251 sInitCoeffs[2] = yMax;
252
253 FermiCoeffs[0]=fermiFunction;
254 FermiCoeffs[1]=0.0;
255 FermiCoeffs[2]=0.0;
256 FermiCoeffs[3]=0.0;
257 FermiCoeffs[4]=0.0;
258 FermiCoeffs[5]=0.0;
259
260
261 std::vector<double> gammaCoeffs(6);
262 gammaCoeffs[0]=76.18009172947146;
263 gammaCoeffs[1]=-86.50532032941677;
264 gammaCoeffs[2]=24.01409824083091;
265 gammaCoeffs[3]=-1.231739572450155;
266 gammaCoeffs[4]=0.1208650973866179e-2;
267 gammaCoeffs[5]=-0.5395239384953e-5;
268
269
270
271 if (fermiFunction == 1) {
272
273 FermiCoeffs[1]=_lambdabar;
274 FermiCoeffs[2]=(-3.*pow(_lambdabar,2.)/_lam1) - 1.;
275 FermiCoeffs[3]=_lam1;
276 FermiCoeffs[4]=1.0;
277
279 EvtItgAbsIntegrator *myNormSimp = new EvtItgSimpsonIntegrator(*myNormFunc, 1.0e-4, 40);
281 delete myNormFunc; myNormFunc=0;
282 delete myNormSimp; myNormSimp=0;
283
284 } else if (fermiFunction == 2) {
285
287 FermiCoeffs[1]=_lambdabar;
288 FermiCoeffs[2]=a;
291 FermiCoeffs[4]=1.0;
292
294 EvtItgAbsIntegrator *myNormSimp = new EvtItgSimpsonIntegrator(*myNormFunc, 1.0e-4, 40);
296 delete myNormFunc; myNormFunc=0;
297 delete myNormSimp; myNormSimp=0;
298
299 }
300 else if (fermiFunction == 3) {
301
303 FermiCoeffs[1]=_mB;
304 FermiCoeffs[2]=_mb;
305 FermiCoeffs[3]= rho;
306 FermiCoeffs[4]=_lambdabar;
307 FermiCoeffs[5]=1.0;
308
310 EvtItgAbsIntegrator *myNormSimp = new EvtItgSimpsonIntegrator(*myNormFunc, 1.0e-4, 40);
312 delete myNormFunc; myNormFunc=0;
313 delete myNormSimp; myNormSimp=0;
314
315 }
316
317
318 EvtItgThreeCoeffFcn* myDeltaFermiFunc = new EvtItgThreeCoeffFcn(&DeltaFermiFunc, -_mb, _mB-_mb, FermiCoeffs, varCoeffs, DeltaCoeffs);
319 EvtItgThreeCoeffFcn* mys88FermiFunc = new EvtItgThreeCoeffFcn(&s88FermiFunc, -_mb, _mB-_mb, FermiCoeffs, varCoeffs, s88Coeffs);
320 EvtItgTwoCoeffFcn* mys77FermiFunc = new EvtItgTwoCoeffFcn(&s77FermiFunc, -_mb, _mB-_mb, FermiCoeffs, varCoeffs);
321 EvtItgTwoCoeffFcn* mys78FermiFunc = new EvtItgTwoCoeffFcn(&s78FermiFunc, -_mb, _mB-_mb, FermiCoeffs, varCoeffs);
322 EvtItgFourCoeffFcn* mys22FermiFunc = new EvtItgFourCoeffFcn(&sFermiFunc, -_mb, _mB-_mb, FermiCoeffs, varCoeffs, sInitCoeffs, s22Coeffs);
323 EvtItgFourCoeffFcn* mys27FermiFunc = new EvtItgFourCoeffFcn(&sFermiFunc, -_mb, _mB-_mb, FermiCoeffs, varCoeffs, sInitCoeffs, s27Coeffs);
324 EvtItgFourCoeffFcn* mys28FermiFunc = new EvtItgFourCoeffFcn(&sFermiFunc, -_mb, _mB-_mb, FermiCoeffs, varCoeffs, sInitCoeffs, s28Coeffs);
325
326
327 EvtItgSimpsonIntegrator* myDeltaFermiSimp =
328 new EvtItgSimpsonIntegrator(*myDeltaFermiFunc, 1.0e-4, 40);
329 EvtItgSimpsonIntegrator* mys77FermiSimp =
330 new EvtItgSimpsonIntegrator(*mys77FermiFunc, 1.0e-4, 40);
331 EvtItgSimpsonIntegrator* mys88FermiSimp =
332 new EvtItgSimpsonIntegrator(*mys88FermiFunc, 1.0e-4, 40);
333 EvtItgSimpsonIntegrator* mys78FermiSimp =
334 new EvtItgSimpsonIntegrator(*mys78FermiFunc, 1.0e-4, 40);
335 EvtItgSimpsonIntegrator* mys22FermiSimp =
336 new EvtItgSimpsonIntegrator(*mys22FermiFunc, 1.0e-4, 40);
337 EvtItgSimpsonIntegrator* mys27FermiSimp =
338 new EvtItgSimpsonIntegrator(*mys27FermiFunc, 1.0e-4, 40);
339 EvtItgSimpsonIntegrator* mys28FermiSimp =
340 new EvtItgSimpsonIntegrator(*mys28FermiFunc, 1.0e-4, 40);
341
342
343 double mHmin = sqrt(_mB*_mB - 2.*_mB*eGammaMax);
344 double mHmax = sqrt(_mB*_mB - 2.*_mB*eGammaMin);
345 double dmH = (mHmax - mHmin)/_nIntervalmH;
346
347 double mH=mHmin;
348
349
350 for (i=0;i<int(_nIntervalmH+1.0);i++) {
351
352 double ymH = 1. - ((mH*mH)/(_mB*_mB));
353
354
355 myDeltaFermiFunc->
setCoeff(2, 2, ymH);
356 mys77FermiFunc->
setCoeff(2, 2, ymH);
357 mys88FermiFunc->
setCoeff(2, 2, ymH);
358 mys78FermiFunc->
setCoeff(2, 2, ymH);
359 mys22FermiFunc->
setCoeff(2, 2, ymH);
360 mys27FermiFunc->
setCoeff(2, 2, ymH);
361 mys28FermiFunc->
setCoeff(2, 2, ymH);
362
363
364
365 double deltaResult = myDeltaFermiSimp->
evaluate((_mB*ymH-_mb),_mB-_mb);
366 double s77Result = mys77FermiSimp->
evaluate((_mB*ymH-_mb),_mB-_mb);
367 double s88Result = mys88FermiSimp->
evaluate((_mB*ymH-_mb),_mB-_mb);
368 double s78Result = mys78FermiSimp->
evaluate((_mB*ymH-_mb),_mB-_mb);
369 double s22Result = mys22FermiSimp->
evaluate((_mB*ymH-_mb),_mB-_mb);
370 double s27Result = mys27FermiSimp->
evaluate((_mB*ymH-_mb),_mB-_mb);
371
372 double py = (pow(_CKMrat,2.)*(6./_fz)*(_alpha/
EvtConst::pi)*(deltaResult*_cDeltatot + (_alphasmu/
EvtConst::pi)*(s77Result*pow(_c70mu,2.) + s27Result*_c2mu*(_c70mu - _c80mu/3.) + s78Result*_c70mu*_c80mu + s22Result*_c2mu*_c2mu + s88Result*_c80mu*_c80mu ) ) );
373
374 mHVect[i] = 2.*(mH/(_mB*_mB))*0.105*Nsl*py;
375
376 massHad[i] = mH;
377 brHad[i] = 2.*(mH/(_mB*_mB))*0.105*Nsl*py;
378
379 mH = mH+dmH;
380
381 }
382
383
384 delete myDeltaFermiFunc; myDeltaFermiFunc=0;
385 delete mys88FermiFunc; mys88FermiFunc=0;
386 delete mys77FermiFunc; mys77FermiFunc=0;
387 delete mys78FermiFunc; mys78FermiFunc=0;
388 delete mys22FermiFunc; mys22FermiFunc=0;
389 delete mys27FermiFunc; mys27FermiFunc=0;
390 delete mys28FermiFunc; mys28FermiFunc=0;
391
392 delete myDeltaFermiSimp; myDeltaFermiSimp=0;
393 delete mys77FermiSimp; mys77FermiSimp=0;
394 delete mys88FermiSimp; mys88FermiSimp=0;
395 delete mys78FermiSimp; mys78FermiSimp=0;
396 delete mys22FermiSimp; mys22FermiSimp=0;
397 delete mys27FermiSimp; mys27FermiSimp=0;
398 delete mys28FermiSimp; mys28FermiSimp=0;
399
400}
ostream & report(Severity severity, const char *facility)
static double FermiGaussFunc(double, std::vector< double > const &coeffs)
static double FermiRomanFunc(double, std::vector< double > const &coeffs)
static double FermiRomanFuncRoot(double, double)
static double FermiGaussFuncRoot(double, double, double, std::vector< double > &coeffs)
static double FermiExpFunc(double var, const std::vector< double > &coeffs)
static double Gamma(double, const std::vector< double > &coeffs)
double CalcAlphaS(double)
double evaluate(double lower, double upper) const
double normalisation() const
virtual void setCoeff(int, int, double)
virtual void setCoeff(int, int, double)
virtual void setCoeff(int, int, double)