We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6b8fa5 commit eb401f6Copy full SHA for eb401f6
README.md
@@ -65,7 +65,7 @@ Explore variable hierarchies:
65
```python
66
ldb.tree
67
print(dir(ldb.tree))
68
-print(ldb.tree.LHC.Collimators.BPM.bpmColl._get_vars())
+print(ldb.tree.LHC.Collimators.BPM.bpmColl.get_vars())
69
```
70
71
Get data for a particular LHC fill:
pytimber/pytimber.py
@@ -601,3 +601,6 @@ def _get_vars(self):
601
return vvv.toString()[1:-1].split(', ')
602
else:
603
return []
604
+
605
+ def get_vars(self):
606
+ return self._get_vars()
0 commit comments