BOSS 7.0.9
BESIII Offline Software System
Loading...
Searching...
No Matches
bak-BesEvtGen-00-04-08/src/EvtGen/EvtGenModels/EvtKKLambdaCFF.cc
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2//
3// Environment:
4// This software is part of the EvtGen package developed jointly
5// for the BaBar and CLEO collaborations. If you use all or part
6// of it, please give an appropriate acknowledgement.
7//
8// Copyright Information: See EvtGen/COPYRIGHT
9// Copyright (C) 1998 Caltech, UCSB
10//
11// Module: EvtSLPoleFF.cc
12//
13// Description: Routine to implement semileptonic form factors
14// according to the model SLPoles
15//
16// Modification history:
17//
18// DJL April 17,1998 Module created
19//
20//------------------------------------------------------------------------
21//
22#include "EvtGenBase/EvtPatches.hh"
23#include "EvtGenBase/EvtPatches.hh"
24#include "EvtGenBase/EvtReport.hh"
25#include "EvtGenModels/EvtKKLambdaCFF.hh"
26#include <string>
27#include "EvtGenBase/EvtPDL.hh"
28#include <math.h>
29
30EvtKKLambdaCFF::EvtKKLambdaCFF(int numarg, double *arglist) {
31 _nargs = numarg;
32 for (int i=0; i<numarg; i++) {
33 _args[i] = arglist[i]; }
34
35 return;
36}
37
39 double t, double mass, double *f1v,
40 double *f1a, double *f2v, double *f2a ) {
41
42 *f1v=(_args[0])/(1.0-(t/(_args[1]*_args[1])));
43
44 *f2v=0.;
45 *f2a=0.;
46 *f1a=-1.0*(*f1v);
47
48}
double mass
TTree * t
Definition: binning.cxx:23
void getbaryonff(EvtId parent, EvtId daught, double t, double mass, double *f1v, double *f1a, double *f2v, double *f2a)