Skip to content

Commit

Permalink
add missing overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
baltzell committed Jan 3, 2025
1 parent e035b76 commit 3b92271
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ public boolean init() {
return true;
}

@Override
public void detectorChanged(int run){}

public boolean init(String... filenames) {
String detectors = getEngineConfigString(CONF_DETECTORS,"DC,FTOF");
String orders = getEngineConfigString(CONF_ORDERS,"NOMINAL");
Expand All @@ -52,7 +55,7 @@ public boolean init(String... filenames) {
}

@Override
public boolean processDataEvent(DataEvent event) {
public boolean processDataEventUser(DataEvent event) {
return bgmerger.mergeEvents(event);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ else if (getEngineConfigString(CONF_PRELOAD_DIR) != null) {
}

@Override
public boolean processDataEvent(DataEvent event) {
public void detectorChanged(int run) {}

@Override
public boolean processDataEventUser(DataEvent event) {
processor.processEvent(event);
return true;
}
Expand Down

0 comments on commit 3b92271

Please sign in to comment.