コード例 #1
0
ファイル: analysis.py プロジェクト: bernhardkaplan/mozaik
 def __init__(self,datastore,parameters,tags=None):
     MozaikParametrizeObject.__init__(self,parameters)
     self.datastore = datastore
     if tags == None:
         self.tags = []
     else:
         self.tags = tags
コード例 #2
0
ファイル: datastore.py プロジェクト: bernhardkaplan/mozaik
 def __init__(self, parameters, full_datastore):
     """
     Just check the parameters, and load the data.
     """
     MozaikParametrizeObject.__init__(self, parameters)
     # we will hold the recordings as one neo Block
     self.block = Block()
     self.analysis_results = []
     self.retinal_stimulus = {}
     self.full_datastore = full_datastore  # should be self if actually the instance is actually DataStore
コード例 #3
0
ファイル: plotting.py プロジェクト: bernhardkaplan/mozaik
 def  __init__(self,datastore,parameters,plot_file_name=None,fig_param=None):
      MozaikParametrizeObject.__init__(self,parameters)
      self.datastore = datastore
      self.plot_file_name = plot_file_name
      self.fig_param = fig_param if fig_param != None else {}
コード例 #4
0
ファイル: queries.py プロジェクト: bernhardkaplan/mozaik
 def __init__(self,parameters):
     """
     Just check the parameters, and load the data.
     """
     MozaikParametrizeObject.__init__(self,parameters)