diff --git a/common-tools/clas-detector/src/main/java/org/jlab/detector/decode/TranslationTable.java b/common-tools/clas-detector/src/main/java/org/jlab/detector/decode/TranslationTable.java index da1c3512b4..ac689c33f3 100644 --- a/common-tools/clas-detector/src/main/java/org/jlab/detector/decode/TranslationTable.java +++ b/common-tools/clas-detector/src/main/java/org/jlab/detector/decode/TranslationTable.java @@ -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 */ @@ -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()) {