EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
gmin.f
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file gmin.f
1 c
2 C
3 C
4  FUNCTION gmin(N)
5  IMPLICIT REAL*8(a-h,o-z)
6  ga=0.
7  IF(n.LE.2) go to 20
8  DO 10 i=1,n-1
9  z=i
10  ga=ga+dlog(z)
11 10 CONTINUE
12 20 gmin=ga
13  RETURN
14  END