def debug_instr(self,debug=True): ''' debug ''' debug = True print "Initializing Debug Instruments..." self.lockin1 = SRS830.SRS830('GPIB1::14',debug) self.lockin2 = SRS830.SRS830('GPIB1::8',debug) self.gate = keithley2400.device('GPIB1::24',debug) self.temp = LS332.LS332('GPIB1::12',debug)
def dil_instr(self, debug=False): """ Dilution Fridge Instruments """ print "Initializing Dil Instruments..." self.lockin1 = SRS830.SRS830("GPIB0::8", debug) self.lockin2 = SRS830.SRS830("GPIB0::7", debug) self.gate = keithley2400.device("GPIB0::24", debug) # self.magnet = IPS120.IPS120('GPIB0::') # self.temp = LS370.LS370('GPIB0::12',debug) self.RF = RF_source.RF_source("GPIB0::19", debug)
def debug_instr(self, debug=True): """ debug """ debug = True print "Initializing Debug Instruments..." self.lockin1 = SRS830.SRS830("GPIB1::14", debug) self.lockin2 = SRS830.SRS830("GPIB1::8", debug) self.gate = keithley2400.device("GPIB1::24", debug) self.gate.enable_output() self.temp = LS332.LS332("GPIB1::12", debug)
def VTI_instr(self,debug=False): print "Initializing VTI Instruments..." self.lockin1 = SRS830.SRS830('GPIB1::14',debug) self.lockin2 = SRS830.SRS830('GPIB1::8',debug) self.gate = keithley2400.device('GPIB1::24',debug) self.temp = LS332.LS332('GPIB1::12',debug)
def VTI_instr(self): print "Initializing Instruments..." self.lockin1 = SRS830.SRS830("GPIB1::14") self.lockin2 = SRS830.SRS830("GPIB1::8") self.gate = keithley2400.device("GPIB1::24") self.temp = LS332.device("GPIB1::12")