We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 855289a commit d574b02Copy full SHA for d574b02
artisatomic/readqubdata.py
@@ -1,4 +1,5 @@
1
#!/usr/bin/env python3
2
+import os
3
import typing as t
4
from collections import defaultdict
5
from collections import namedtuple
@@ -11,7 +12,12 @@
11
12
13
import artisatomic
14
-tyndall_co3_path = (Path(__file__).parent.resolve() / ".." / "atomic-data-qub" / "co_tyndall").resolve()
15
+tyndall_co3_path = (
16
+ Path(__file__).parent.resolve()
17
+ / ".."
18
+ / "atomic-data-qub"
19
+ / ("co_tyndall_test_sample" if os.environ.get("ARTISATOMIC_TESTMODE") == "1" else "co_tyndall")
20
+).resolve()
21
22
ryd_to_ev = 13.605693122994232
23
0 commit comments