1 C Store the geometric variables in the following COMMON block.
2 integer ntheta,nphi,nside,nvar,ialph,ivar
3 double precision theta,phi,alph,omeg,vbld,vbld_ref,
4 & theta_ref,phi_ref,alph_ref,omeg_ref,
5 & costtab,sinttab,cost2tab,sint2tab,tauangle,omicron,
7 & thetaref,phiref,xxref,yyref,zzref
8 common /var/ theta(maxres),phi(maxres),alph(maxres),omeg(maxres),
9 & vbld(2*maxres),thetaref(maxres),phiref(maxres),
10 & costtab(maxres), sinttab(maxres), cost2tab(maxres),
11 & sint2tab(maxres),xxtab(maxres),yytab(maxres),
12 & zztab(maxres),xxref(maxres),yyref(maxres),zzref(maxres),
13 & ialph(maxres,2),ivar(4*maxres2),ntheta,nphi,nside,nvar,
14 & omicron(2,maxres),tauangle(3,maxres)
15 C Angles from experimental structure
16 common /varref/ vbld_ref(maxres),
17 & theta_ref(maxres),phi_ref(maxres),
18 & alph_ref(maxres),omeg_ref(maxres)