COSMOS v7.655  COSMOSv7655
(AirShowerMC)
intePrim2.f
Go to the documentation of this file.
1  subroutine inteprim2(comp, i1, i2, ans)
2  implicit none
3 #include "Zptcl.h"
4 #include "Zprimary.h"
5 ! primary flux at E
6  type(component)::comp
7  integer i1, i2
8  real*8 ans
9 
10  real*8 sum
11 
12  integer i
13  sum = 0.
14 
15  do i = i1, i2
16  if(comp%cut .ne. 0.) then
17  if(comp%emin .le. comp%energy(i)) then
18  sum = comp%norm_inte(i)
19  goto 100
20  endif
21  else
22  sum = comp%norm_inte(i)
23  goto 100
24  endif
25  enddo
26  100 continue
27  ans = sum * comp%inte_value
28  end
subroutine inteprim2(comp, i1, i2, ans)
Definition: intePrim2.f:2