forked from foxsi/calsoft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
draw_4hist.pro
executable file
·39 lines (29 loc) · 1.36 KB
/
draw_4hist.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
33
34
35
36
37
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PRO DRAW_4HIST, HIST, XRANGE = XRANGE, YRANGE = YRANGE, REBIN = REBIN, $
NOWINDOW=NOWINDOW, YLOG=YLOG, BACKGROUND=BACKGROUND, COLOR=COLOR, $
_EXTRA=_EXTRA
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;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(background) then background = 0
; if not keyword_set(color) then color = 255
if not keyword_set(nowindow) then window, xsize = 800, ysize = 600
!p.multi = [0, 2, 2]
for asic = 0, 3 do begin
xx=(rebin(hist, 1124, 1, 4, 2))(*, 0, asic, 0)
yy=(rebin(hist, 1124, 1, 4, 2))(*, 0, asic, 1)
plotx=rebin2(xx,rebin)
ploty=rebin2(yy,rebin)
plot, plotx, ploty, xrange = xrange, $
yrange = yrange, psym = 10, $
xtitle = 'ADC', $
ytitle = 'ASIC '+strtrim(asic,2)+' histogram', $
ylog = ylog, _extra=_extra;, $
; background = background, color = color
endfor
END