You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
subroutine runCY_0000(k,l,Xtwiddle,Gtwiddle,Shat4zz,N0)
|
|
implicit none
|
|
C--- Expression for C0000 obtained from 5.50, following the comment after
|
|
C 5.50 on how to add adcing adcitional "00" pairs
|
|
C--- Calculates C0000
|
|
C--- Small terms of order Xtwiddle(0,k)*C00i,Xtwiddle(0,0)*C00ii
|
|
C--- Denominator Gtwiddle(k,l)
|
|
include 'lib/TensorReduction/Include/types.f'
|
|
include 'lib/TensorReduction/Include/pvCnames.f'
|
|
include 'lib/TensorReduction/Include/pvCv.f'
|
|
include 'lib/TensorReduction/recur/Include/Carraydef.f'
|
|
include 'lib/TensorReduction/recur/Include/Carrays.f'
|
|
integer ep,N0,k,l,np
|
|
parameter(np=2)
|
|
real(dp):: Xtwiddle(0:np,0:np),Gtwiddle(np,np)
|
|
complex(dp):: Shat4zz(np,z1max,-2:0)
|
|
|
|
do ep=-2,0
|
|
Cv(cc0000+N0,ep) =
|
|
. -(-(Gtwiddle(k,1)*Shat4zz(1,l,ep)
|
|
. +Gtwiddle(k,2)*Shat4zz(2,l,ep)
|
|
. +Xtwiddle(k,0)*Cv(czzi(l)+N0,ep)
|
|
. -Xtwiddle(0,0)*Cv(czzii(z2(k,l))+N0,ep)
|
|
. ))/(2d0*Gtwiddle(k,l))
|
|
|
|
enddo
|
|
|
|
return
|
|
end
|
|
|