Commit 599a38c7 authored by Lucas Giardino's avatar Lucas Giardino

single_transition: comento ttl de pmt

parent f549c276
......@@ -16,7 +16,7 @@ class SingleLine(EnvExperiment):
self.setattr_device("ccb")
self.pmt = self.get_device("ttl0")
self.pmt_state = self.get_device("ttl4")
#self.pmt_state = self.get_device("ttl4")
self.laserUV = UrukulCh(self, ch=2, freq=110.0, amp=0.3, name="UV") #corresponde a 0.7 Vpp
self.laserIR = UrukulCh(self, ch=1, freq=208.0, amp=0.35, name="IR") #corresponde a 0.8 Vpp
......@@ -71,7 +71,7 @@ class SingleLine(EnvExperiment):
self.create_datasets()
self.create_applets()
self.init_kernel()
delay(100*ms)
delay(1*ms)
self.enfriar_ion()
for runN in range(self.no_measures):
......@@ -89,11 +89,11 @@ class SingleLine(EnvExperiment):
def init_kernel(self):
self.core.reset()
self.pmt.input()
self.pmt_state.output()
#self.pmt_state.output()
self.laserIR.initialize_channel()
self.laserUV.initialize_channel()
# Quizas haya errores de tiempo.
self.pmt_state.off()
#self.pmt_state.off()
self.laserIR.set_channel()
self.laserUV.set_channel()
self.core.wait_until_mu(now_mu())
......@@ -144,4 +144,4 @@ class SingleLine(EnvExperiment):
self.core.break_realtime()
self.laserIR.off()
self.laserUV.off()
self.pmt_state.off()
#self.pmt_state.off()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment