Skip to content

Commit de733d5

Browse files
Merge pull request #88 from JeffersonLab/baltzell-patch-1
needs to go to stderr to always see it
2 parents f685be5 + fa736bd commit de733d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/clas/detectors/DCmonitor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public void createHistos() {
134134
private void getReverseTT(int run) {
135135
this.getCcdb().init("/daq/tt/dc");
136136
tt = this.getCcdb().getConstants(run, "/daq/tt/dc");
137-
System.out.print("Inverting DC translation table, this may take a few seconds ...");
137+
System.err.print("Inverting DC translation table, this may take a few seconds ...");
138138
reverse = new IndexedTable(4, "crate/I:slot/I:channel/I");
139139
for(int row=0; row<tt.getRowCount(); row++) {
140140
int crate = Integer.valueOf((String)tt.getValueAt(row,0));
@@ -149,7 +149,7 @@ private void getReverseTT(int run) {
149149
reverse.setIntValue(slot, "slot", sector, layer, comp, order);
150150
reverse.setIntValue(channel, "channel", sector, layer, comp, order);
151151
}
152-
System.out.println("Done inverting DC translation table.");
152+
System.err.println("Done inverting DC translation table.");
153153
}
154154

155155
@Override

0 commit comments

Comments
 (0)