Skip to content
Snippets Groups Projects

Add acoustics monitoring

Merged Carlo Guidi requested to merge cguidi/km3mon:undefined into master
Compare and Show latest version
1 file
+ 26
25
Compare changes
  • Side-by-side
  • Inline
+ 26
25
@@ -45,13 +45,14 @@ table=db.run_table(detid)
AB=[12,14,16] # Acoustic Beacons
DOM=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18] # DOMs
DU=[1,2,3,4,5] # DUs
ACOUSTIC_BEACONS = [12, 14, 16]
N_DOMS = 18
DOMS = range(N_DOMS + 1)
N_DUS = 5
DUS = range(1, N_DUS + 1)
#AB=[16] # Acoustic Beacons
#DOM=[7] #
#DU=[3] # DUs
TIT=600 # Time Interval between Trains of acoustic pulses)
SSW=160 # Signal Security Window (Window size with signal)
check=True
while check==True:
@@ -62,24 +63,24 @@ while check==True:
mintime=mintime1.values
maxrun=table["RUN"][len(table["RUN"])-1]
now=time.time()
if (now-mintime/1000)<600:
if (now-mintime/1000)<TIT:
minrun=table["RUN"][len(table["RUN"])-1]-1
print(now)
COL=[]
for i in DU:
DUx=[]
for j in AB:
for k in DOM:
for du in DUS:
N_Pulses_Indicator=[] # Array indicating for each DU how many pulses each piezo reveals.
for ab in ACOUSTIC_BEACONS:
for dom in DOMS:
try:
macaddress = db.doms.via_omkey((i,k), detid).dom_id
toas_all = sds.toashort(detid=detid, minrun=minrun, maxrun=maxrun, domid=macaddress, emitterid=j) # Prendere i dati basandosi sul tempo e non sul run????
domID = db.doms.via_omkey((du,dom), detid).dom_id
toas_all = sds.toashort(detid=detid, minrun=minrun, maxrun=maxrun, domid=domID, emitterid=ab)
QF_abdom=toas_all["QUALITYFACTOR"]
UTB_abdom=toas_all["UNIXTIMEBASE"]
TOAS_abdom=toas_all["TOA_S"]
UTB_abdom=UTB_abdom.values
up=np.where(UTB_abdom>(now-600))
up=np.where(UTB_abdom>(now-TIT))
down=np.where(UTB_abdom<(now))
intr=np.intersect1d(up,down)
UTB_abdom=UTB_abdom[intr]
@@ -89,8 +90,8 @@ while check==True:
QFlist.sort(reverse=True)
QF_max=max(QF_abdom)
QF_max_index=np.where(QF_abdom==QF_max)
UTB_signal_min=UTB_abdom[QF_max_index]-80
UTB_signal_max=UTB_abdom[QF_max_index]+80
UTB_signal_min=UTB_abdom[QF_max_index]-SSW/2
UTB_signal_max=UTB_abdom[QF_max_index]+SSW/2
temp1=np.where(UTB_abdom>(UTB_signal_min[0]))
temp2=np.where(UTB_abdom<(UTB_signal_max[0]))
inter=np.intersect1d(temp1,temp2)
@@ -107,11 +108,12 @@ while check==True:
noise_threshold=max(NOISE)
# First filter: 22 greatest
Security_Number=22 # To be sure to take all the pulses
SIGNAL=SIGNAL.tolist()
SIGNAL_OLD=np.array(SIGNAL)
SIGNAL.sort(reverse=True)
QF_first=SIGNAL[0:22]
QF_first=SIGNAL[0:Security_Number]
# Second filter: delete duplicates
@@ -133,7 +135,6 @@ while check==True:
# Fifth filter: Check if the clicks are interspersed in the right way
# QF_fifth=[k for k in QF_fourth if (abs(k-max(QF_fourth))<abs(k-noise_threshold))]
Q=[]
for q in np.arange(len(QF_fourth)):
Q.append(np.where(SIGNAL_OLD==QF_fourth[q])[0][0])
@@ -153,20 +154,20 @@ while check==True:
print(NUM)
if (NUM>7):
DUx.append(1.5)
N_Pulses_Indicator.append(1.5)
elif (NUM<8 and NUM>3):
DUx.append(0.5)
N_Pulses_Indicator.append(0.5)
elif (NUM<4 and NUM>0):
DUx.append(-0.5)
N_Pulses_Indicator.append(-0.5)
elif (NUM==0):
DUx.append(-1.5)
N_Pulses_Indicator.append(-1.5)
except:
stop=[]
DUx.append(-1.5)
N_Pulses_Indicator.append(-1.5)
COL.append(DUx)
COL.append(N_Pulses_Indicator)
@@ -259,7 +260,7 @@ while check==True:
print(check_time)
time.sleep(abs(600-check_time))
time.sleep(abs(TIT-check_time))
check=True
Loading