COSMOS v7.655  COSMOSv7655
(AirShowerMC)
cpimnTotXs.f
Go to the documentation of this file.
1 ! pi-n total xsection , elastic xs
2  subroutine cpimntotxs(p, xs)
3  implicit none
4  real*8 p ! input. momentum of n. in GeV
5  real*8 xs ! output. total np cross section in mb
6  call cpipptotxs(p, xs)
7  end subroutine cpimntotxs
8 !
9  subroutine cpimnelaxs(p, xs)
10 ! pi+ p elastic cross section in mb
11  implicit none
12  real*8 p ! input. momentum of n in GeV
13  real*8 xs ! output np elastic xs. mb.
14  call cpippelaxs(p, xs)
15  end subroutine cpimnelaxs
16  subroutine cpimninelaxs(p, xs)
17  implicit none
18  real(8),intent(in)::p
19  real(8),intent(out)::xs
20 
21  real(8)::txs, exs
22  call cpippinelaxs(p, xs)
23  end subroutine cpimninelaxs
24 
subroutine cpimnelaxs(p, xs)
Definition: cpimnTotXs.f:10
subroutine cpimntotxs(p, xs)
Definition: cpimnTotXs.f:3
subroutine cpipptotxs(p, xs)
Definition: cpippTotXs.f:3
subroutine cpippelaxs(p, xs)
Definition: cpippTotXs.f:61
subroutine cpimninelaxs(p, xs)
Definition: cpimnTotXs.f:17
subroutine cpippinelaxs(p, xs)
Definition: cpippTotXs.f:180