forked from foxsi/calsoft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfind_peak.pro
executable file
·32 lines (24 loc) · 911 Bytes
/
find_peak.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
FUNCTION FIND_PEAK, XAXIS, HIST, LD, UD, DX, REBIN
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
xtemp=rebin2(xaxis,rebin)
htemp=rebin2(hist,rebin)
htemp2=htemp
for i=0, (size(htemp))(1)-1 do begin
if xtemp[i] lt ld or xtemp[i] gt ud then htemp[i]=0.
endfor
maxbin=(where(htemp eq max(htemp)))(0)
integ=0.
norm=0.
if maxbin lt dx then maxbin=dx+1
for i=maxbin-dx, maxbin+dx do begin
integ+=htemp2[i]*xtemp[i]
norm+=htemp2[i]
endfor
peak=integ/norm
return, peak
END