]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MINICERN/mathlib/gen/u/u100pm.F
This commit was generated by cvs2svn to compensate for changes in r2,
[u/mrichter/AliRoot.git] / MINICERN / mathlib / gen / u / u100pm.F
CommitLineData
fe4da5cc 1*
2* $Id$
3*
4* $Log$
5* Revision 1.1.1.1 1996/04/01 15:01:45 mclareni
6* Mathlib gen
7*
8*
9#include "gen/pilot.h"
10 SUBROUTINE U100PM(J,IN,ID)
11 DIMENSION J(40),IPRIME(40)
12 DATA IPRIME/2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,
13 + 71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,
14 + 157,163,167,173/
15 IN=1
16 ID=1
17 DO 1 LL=1,40
18 IF(J(LL).GT.0) IN=IN*IPRIME(LL)**J(LL)
19 1 IF(J(LL).LT.0) ID=ID*IPRIME(LL)**(-J(LL))
20 RETURN
21 END