Skip to content

Commit 2216fb9

Browse files
committed
add missing overrides
1 parent 9c58328 commit 2216fb9

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

reconstruction/bg/src/main/java/org/jlab/service/bg/BackgroundEngine.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ public boolean init() {
4141
return true;
4242
}
4343

44+
@Override
45+
public void detectorChanged(int run){}
46+
4447
public boolean init(String... filenames) {
4548
bgfilenames.clear();
4649
String detectors = getEngineConfigString(CONF_DETECTORS,"DC,FTOF");
@@ -80,7 +83,7 @@ synchronized public DataEvent getBackgroundEvent() {
8083
}
8184

8285
@Override
83-
public boolean processDataEvent(DataEvent event) {
86+
public boolean processDataEventUser(DataEvent event) {
8487
if (!bgfilenames.isEmpty()) {
8588
DataEvent a = getBackgroundEvent();
8689
DataEvent b = getBackgroundEvent();

reconstruction/postproc/src/main/java/org/jlab/service/postproc/PostprocEngine.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ else if (getEngineConfigString(CONF_PRELOAD_DIR) != null) {
4747
}
4848

4949
@Override
50-
public boolean processDataEvent(DataEvent event) {
50+
public void detectorChanged(int run) {}
51+
52+
@Override
53+
public boolean processDataEventUser(DataEvent event) {
5154
processor.processEvent(event);
5255
return true;
5356
}

0 commit comments

Comments
 (0)