COSMOS v7.655  COSMOSv7655
(AirShowerMC)
cpipnTotXs.f
Go to the documentation of this file.
1 ! pi+n total xsection , elastic xs
2  subroutine cpipntotxs(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 cpimptotxs(p, xs)
7  end subroutine cpipntotxs
8 !
9  subroutine cpipnelaxs(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 cpimpelaxs(p, xs)
15  end subroutine cpipnelaxs
16  subroutine cpipninelaxs(p, xs)
17  implicit none
18  real(8),intent(in)::p
19  real(8),intent(out)::xs
20  call cpimpinelaxs(p, xs)
21  end subroutine cpipninelaxs
22 
subroutine cpipntotxs(p, xs)
Definition: cpipnTotXs.f:3
subroutine cpipninelaxs(p, xs)
Definition: cpipnTotXs.f:17
subroutine cpipnelaxs(p, xs)
Definition: cpipnTotXs.f:10
subroutine cpimpinelaxs(p, xs)
Definition: cpimpTotXs.f:145
subroutine cpimpelaxs(p, xs)
Definition: cpimpTotXs.f:64
subroutine cpimptotxs(p, xs)
Definition: cpimpTotXs.f:3