示例#1
0
    def mcmc_old( self ):
        # todo - should probably handle both white and spec with a single backend routine?
        if self.lc_type=='white':
            MultiBandRoutines.white_mcmc( self )
        else:
            pdb.set_trace()

        return None
示例#2
0
 def mcmc( self ):
     MultiBandRoutines.mcmc( self )
     return None
示例#3
0
 def prep_spec_lcs( self ):
     # should this just handle one channel at a time?
     MultiBandRoutines.spec_lcs( self )
     return None
示例#4
0
 def mle( self ):
     MultiBandRoutines.mle( self )
     return None
示例#5
0
 def prep_white_lc( self ):
     # requires hst.input_data_file to exist already, 
     # which contains variables auxvars, spectra, wavsol_micron at least.
     MultiBandRoutines.white_lc( self )
     return None