forked from foxsi/calsoft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetcmn.pro
executable file
·61 lines (52 loc) · 1.78 KB
/
getcmn.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
FUNCTION GETCMN, DATA
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
MaxCMNRMS = 3.0
cmn = 0.0
rms = 1000.0
for it = 0, 1 do begin
thr = MaxCMNRMS * rms
sum = 0.0
sumev = 0.0
sumsq = 0.0
max = -5000.0
max2 = -5000.0
min = 5000.0
min2 = 5000.0
for ch = 0, (size(data))[1]-1 do begin
ph = data[ch]
;;;print, ph, cmn, abs(ph-cmn), thr
; use only reasonable ones.
if abs(ph-cmn) lt thr then begin
sumev += 1
sum += ph
sumsq += ph*ph ; register two larget and smallest pulse heights
if ph gt max2 then begin
if ph gt max then begin
max2 = max
max = ph
endif else max2 = ph
endif
if ph lt min2 then begin
if ph lt min then begin
min2 = min
min = ph
endif else min2 = ph
endif
endif ; good channel
endfor ; channel loop
; calculate mean and RMS
sumev -= 4
if sumev gt 10 then begin
sum -= (max+max2+min+min2)
sumsq -= (max*max+max2*max2+min*min+min2*min2)
cmn = sum / sumev
rms = sqrt( sumsq/sumev - cmn*cmn )
endif
endfor ; iteration loop
return, cmn
END