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 0bd5882 commit 6417ff1Copy full SHA for 6417ff1
common-tools/clas-detector/src/main/java/org/jlab/detector/calib/utils/DatabaseConstantProvider.java
@@ -15,6 +15,7 @@
15
import org.jlab.ccdb.CCDB;
16
import javax.swing.JFrame;
17
import org.jlab.ccdb.Assignment;
18
+import org.jlab.ccdb.TypeTable;
19
20
import org.jlab.ccdb.TypeTableColumn;
21
import org.rcdb.RCDB;
@@ -92,6 +93,14 @@ public Set<String> getEntrySet(){
92
93
}
94
return entries;
95
96
+
97
+ public Assignment getAssignment(String table) {
98
+ return provider.getData(table);
99
+ }
100
101
+ public TypeTable getTypeTable(String table) {
102
+ return provider.getTypeTable(table);
103
104
105
private String getEnvironment(){
106
0 commit comments