2015-05-22 16:44:23 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
# -*- coding: cp1252 -*-
|
|
|
|
|
|
2015-05-27 07:48:24 +02:00
|
|
|
"""
|
|
|
|
|
Global variables
|
|
|
|
|
|
2015-05-31 12:40:43 +02:00
|
|
|
@author: Jens Herrmann
|
2015-05-27 07:48:24 +02:00
|
|
|
@author: Bastian Schroll
|
|
|
|
|
"""
|
|
|
|
|
|
2015-06-14 20:21:21 +02:00
|
|
|
# Global variables
|
2015-05-22 16:44:23 +02:00
|
|
|
config = 0
|
|
|
|
|
script_path = ""
|
|
|
|
|
|
2015-06-14 20:21:21 +02:00
|
|
|
# double alarm
|
2015-05-22 16:44:23 +02:00
|
|
|
fms_id_old = 0
|
|
|
|
|
fms_time_old = 0
|
|
|
|
|
|
|
|
|
|
zvei_id_old = 0
|
|
|
|
|
zvei_time_old = 0
|
|
|
|
|
|
|
|
|
|
poc_id_old = 0
|
|
|
|
|
poc_time_old = 0
|
|
|
|
|
|
2015-06-14 20:21:21 +02:00
|
|
|
# pluginLoader
|
2015-05-23 08:47:05 +02:00
|
|
|
pluginList = {}
|
|
|
|
|
|
2015-06-14 20:21:21 +02:00
|
|
|
# filter
|
2015-06-05 21:49:51 +02:00
|
|
|
filterList = []
|
|
|
|
|
|
2015-06-14 20:21:21 +02:00
|
|
|
# idDescribing
|
2015-06-05 21:49:51 +02:00
|
|
|
fmsDescribtionList = {}
|
|
|
|
|
zveiDescribtionList = {}
|
|
|
|
|
ricDescribtionList = {}
|
|
|
|
|
|