Page MenuHomeHEPForge

dssea_sunbkg.f
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

dssea_sunbkg.f

***********************************************************************
*** dssea_sunbkg calculats the differential background of muons cosmic
*** ray interactions in the sun's corona. the muon neutrino fluxes are from
*** g. ingelman and m. thunman, prd 54 (1996) 4385.
*** input:
*** emu - muon energy in gev
*** fltype = 1 - flux of muons
*** 2 - contained event rate
*** output:
*** muon flux in units of gev^-1 km^-2(3) yr^-1
*** partly based on routines by l. bergstrom.
*** author: j. edsjo (edsjo@fysik.su.se)
*** date: 1998-06-03
***********************************************************************
real*8 function dssea_sunbkg(emu,flt)
implicit none
real*8 emu
real*8 e_mux
real*8 dssea_ff2,dssea_ff3,a,b,eps,res
external dssea_ff2,dssea_ff3
integer flt
integer fltype
common/lbe_int2/e_mux,fltype
fltype=flt
eps=1.d-5
a=emu
e_mux=emu
b=1.d7 !
if (emu.ge.b) then
dssea_sunbkg=0.0d0
return
endif
c call dgadap(a,b,dssea_ff3,eps,res)
call dgadap(log(a),log(b),dssea_ff3,eps,res)
res=res/1.0d15
c call dssea_gauss1(dssea_ff3,log(a),log(b),100,res,eps)
if (flt.eq.1) then
dssea_sunbkg=res*3.15d17 ! convert to km^-2 yr^-1 gev^-1
else
dssea_sunbkg=res*3.15d22 ! convert to km^-3 yr^-1 gev^-1
endif
return
end

File Metadata

Mime Type
text/plain
Expires
Tue, Sep 30, 5:59 AM (1 d, 19 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
6566406
Default Alt Text
dssea_sunbkg.f (1 KB)

Event Timeline