BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtCGCoefSingle.hh
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: EvtGen/EvtCGCoefSingle.hh
12//
13// Description:Evaluation of Clebsch-Gordon coef for a fixed j1 and j2.
14//
15// Modification history:
16//
17// RYD August 12, 2000 Module created
18//
19//------------------------------------------------------------------------
20
21#ifndef EVTCGCOEFSINGLE_HH
22#define EVTCGCOEFSINGLE_HH
23
24#include <vector>
25
27
28public:
29 EvtCGCoefSingle( int j1, int j2 ) { init( j1, j2 ); }
31
32 double coef( int J, int M, int j1, int j2, int m1, int m2 );
33
34private:
35 void init( int j1, int j2 );
36 double& cg( int J, int M, int m1, int m2 );
37
38 int _j1;
39 int _j2;
40
41 int _Jmax;
42 int _Jmin;
43
44 std::vector<std::vector<std::vector<double>>> _table;
45};
46
47#endif
EvtCGCoefSingle(int j1, int j2)
double coef(int J, int M, int j1, int j2, int m1, int m2)
double double * m2
Definition qcdloop1.h:83
double * m1
Definition qcdloop1.h:83