Skip to content

Commit fbedb7c

Browse files
committedApr 5, 2015
photon_histogram: remove +x permissions, add units to parameter defs
1 parent ef375b5 commit fbedb7c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

‎examples/master/repository/photon_histogram.py

100755100644
+6-6
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ class DBKeys:
1313
nbins = Argument(100)
1414
repeats = Argument(100)
1515

16-
cool_f = Parameter(230)
17-
detect_f = Parameter(220)
18-
detect_t = Parameter(100)
16+
cool_f = Parameter(230*MHz)
17+
detect_f = Parameter(220*MHz)
18+
detect_t = Parameter(100*us)
1919

2020
ion_present = Parameter(True)
2121

@@ -27,10 +27,10 @@ def cool_detect(self):
2727
with parallel:
2828
self.bd.pulse(200*MHz, 1*ms)
2929
self.bdd.pulse(300*MHz, 1*ms)
30-
self.bd.pulse(self.cool_f*MHz, 100*us)
30+
self.bd.pulse(self.cool_f, 100*us)
3131
with parallel:
32-
self.bd.pulse(self.detect_f*MHz, self.detect_t*us)
33-
self.pmt.gate_rising(self.detect_t*us)
32+
self.bd.pulse(self.detect_f, self.detect_t)
33+
self.pmt.gate_rising(self.detect_t)
3434
self.bd.on(200*MHz)
3535
self.bdd.on(300*MHz)
3636
return self.pmt.count()

0 commit comments

Comments
 (0)