Exemple #1
0
 def __init__(self, model):
     '''
     Constructor
     '''
     SourceLayer.__init__(self, True)
     self.model = model
     
Exemple #2
0
 def __init__(self, file_string):
     '''
     Constructor
     '''
     SourceLayer.__init__(self, False)
     self.file_name = file_string
     self.file_sources = []
Exemple #3
0
 def __init__(self, num_right_asc_lines, num_dec_lines):
     '''
     Constructor
     '''
     SourceLayer.__init__(self, False)
     self.num_RA_sources = num_right_asc_lines
     self.num_De_sources = num_dec_lines
Exemple #4
0
 def __init__(self, file_string):
     '''
     Constructor
     '''
     SourceLayer.__init__(self, False)
     self.file_name = file_string
     self.file_sources = []
Exemple #5
0
 def __init__(self, num_right_asc_lines, num_dec_lines):
     '''
     Constructor
     '''
     SourceLayer.__init__(self, False)
     self.num_RA_sources = num_right_asc_lines
     self.num_De_sources = num_dec_lines
     
Exemple #6
0
    def __init__(self, model):
        '''
        Constructor
        '''
        SourceLayer.__init__(self, True)

        self.showers = []
        self.model = model
        self.initialize_showers()
Exemple #7
0
 def __init__(self, model):
     '''
     Constructor
     '''
     SourceLayer.__init__(self, True)
     
     self.showers = []
     self.model = model
     self.initialize_showers()
     
Exemple #8
0
 def initialize(self):
     # Need to execute this in a background thread
     self.read_source_file(self.file_name)
     SourceLayer.initialize(self)
Exemple #9
0
 def __init__(self):
     '''
     Constructor
     '''
     SourceLayer.__init__(self, False)
Exemple #10
0
 def initialize(self):
     # Need to execute this in a background thread
     self.read_source_file(self.file_name)
     SourceLayer.initialize(self)
Exemple #11
0
 def __init__(self):
     '''
     Constructor
     '''
     SourceLayer.__init__(self, False)