forked from foxsi/calsoft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdraw_4spec.pro
executable file
·34 lines (24 loc) · 1.05 KB
/
draw_4spec.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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PRO DRAW_4SPEC, HIST, XRANGE = XRANGE, YRANGE = YRANGE, REBIN = REBIN, $
_EXTRA = _EXTRA, CH = CH
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;if not keyword_set(xrange) then xrange = [0, 1023]
;if not keyword_set(yrange) then yrange = []
if not keyword_set(rebin) then rebin=1
if not keyword_set(ch) then ch = 64
; window, xsize = 800, ysize = 600
!p.multi = [0, 2, 2]
for asic = 0, 3 do begin
xx=hist(*, ch, asic, 0)
yy=hist(*, ch, asic, 1)
plotx=rebin2(xx,rebin)
ploty=rebin2(yy,rebin)
plot, plotx, ploty, xrange = xrange, _extra = _extra, $
yrange = yrange, psym = 10, $
xtitle='Energy [keV]'
endfor
END