Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
import org.jlab.detector.calib.utils.ConstantsManager;

/**
* An IndexedTable assuming the standard, /daq/tt CCDB format (c/s/c/s/l/c/o),
* appended by a DetectorType column. A global CCDB translation table.
*
* @author baltzell
*/
Expand All @@ -15,6 +17,10 @@ public TranslationTable() {
super(3,new String[]{"sector/I","layer/I","component/I","order/I","type/I"});
};

/**
* Add a detector's entire translation table.
*
*/
public void add(DetectorType dt, IndexedTable it) {

for (Object key : it.getList().getMap().keySet()) {
Expand Down
Loading