BOSS 7.0.1
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtdFunctionSingle.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) 2000 Caltech, UCSB
10//
11// Module: EvtdFunctionSingle.cc
12//
13// Description: Evaluates one Wigner d-Functions.
14//
15// Modification history:
16//
17// fkw February 2, 2001 changes to satisfy KCC
18// RYD August 10, 2000 Module created
19//
20//------------------------------------------------------------------------
21//
23#include <stdlib.h>
24#include <math.h>
25#include <iostream>
26#include <assert.h>
28
30 _j=0;
31 _m1=0;
32 _m2=0;
33 _coef=0;
34 _kmin=0;
35 _kmax=0;
36}
37
38
40 if (_coef!=0) delete [] _coef;
41}
42
43
44void EvtdFunctionSingle::init(int j,int m1,int m2){
45
46 assert(abs(m2)>=abs(m1));
47 assert(m2>=0);
48
49 _j=j;
50 _m1=m1;
51 _m2=m2;
52
53 _kmin=_m2-_m1;
54 _kmax=_j-_m1;
55
56 assert(_kmin<=_kmax);
57
58 _coef=new double[(_kmax-_kmin)/2+1];
59
60 int k;
61
62 for(k=_kmin;k<=_kmax;k+=2){
63 int sign=1;
64 if ((k-_m2+_m1)%4!=0) sign=-sign;
65 //fkw change to satisfy KCC
66 double fkwTmp = fact((_j+_m2)/2)*fact((_j-_m2)/2)
67 *fact((_j+_m1)/2)*fact((_j-_m1)/2);
68 _coef[(k-_kmin)/2]=sign*sqrt(fkwTmp)/
69 (fact((_j+_m2-k)/2)*fact(k/2)*fact((_j-_m1-k)/2)*fact((k-_m2+_m1)/2));
70
71 //fkw _coef[(k-_kmin)/2]=sign*sqrt(fact((_j+_m2)/2)*fact((_j-_m2)/2)*
72 //fkw fact((_j+_m1)/2)*fact((_j-_m1)/2))/
73 //fkw (fact((_j+_m2-k)/2)*fact(k/2)*fact((_j-_m1-k)/2)*fact((k-_m2+_m1)/2));
74
75 //report(INFO,"EvtGen") << "k, coef:"<<k/2<<" "<<_coef[(k-_kmin)/2]<<endl;
76 }
77
78}
79
80
81double EvtdFunctionSingle::d(int j,int m1,int m2, double theta){
82
83 //report(INFO,"EvtGen") << "j,m1,m2:"<<j<<","<<m1<<","<<m2<<" theta:"<<theta<<endl;
84
85 assert(j==_j);
86 assert(m1==_m1);
87 assert(m2==_m2);
88
89 double c2=cos(0.5*theta);
90 double s2=sin(0.5*theta);
91
92 double d=0.0;
93
94 int k;
95 for(k=_kmin;k<=_kmax;k+=2){
96 d+=_coef[(k-_kmin)/2]*pow(c2,(2*_j-2*k+m2-m1)/2)*pow(s2,(2*k-m2+m1)/2);
97 }
98
99 return d;
100
101}
102
103
104int EvtdFunctionSingle::fact(int n){
105
106 assert(n>=0);
107
108 int f=1;
109
110 int k;
111 for(k=2;k<=n;k++) f*=k;
112
113 return f;
114
115}
116
117
118
const Int_t n
double sin(const BesAngle a)
double cos(const BesAngle a)
double d(int j, int m1, int m2, double theta)
void init(int j, int m1, int m2)