Go to the documentation of this file.00001 SUBROUTINE getsd(iseed1,iseed2)
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 INTEGER numg
00030 PARAMETER (numg=32)
00031
00032
00033 INTEGER iseed1,iseed2
00034
00035
00036 INTEGER a1,a1vw,a1w,a2,a2vw,a2w,m1,m2
00037
00038
00039 INTEGER cg1(numg),cg2(numg),ig1(numg),ig2(numg),lg1(numg),
00040 + lg2(numg)
00041 LOGICAL qanti(numg)
00042
00043
00044 INTEGER g
00045
00046
00047 LOGICAL qrgnin
00048 EXTERNAL qrgnin
00049
00050
00051 EXTERNAL getcgn
00052
00053
00054 COMMON /globe/m1,m2,a1,a2,a1w,a2w,a1vw,a2vw,ig1,ig2,lg1,lg2,cg1,
00055 + cg2,qanti
00056
00057
00058 SAVE /globe/
00059
00060
00061
00062 IF (qrgnin()) GO TO 10
00063 WRITE (*,*) ' GETSD called before random number generator ',
00064 + ' initialized -- abort!'
00065 CALL XSTOPX
00066 + (' GETSD called before random number generator initialized')
00067
00068 10 CALL getcgn(g)
00069 iseed1 = cg1(g)
00070 iseed2 = cg2(g)
00071 RETURN
00072
00073 END