File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
bg/src/main/java/org/jlab/service/bg
postproc/src/main/java/org/jlab/service/postproc Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ public boolean init() {
4040 return true ;
4141 }
4242
43+ @ Override
44+ public void detectorChanged (int run ){}
45+
4346 public boolean init (String ... filenames ) {
4447 String detectors = getEngineConfigString (CONF_DETECTORS ,"DC,FTOF" );
4548 String orders = getEngineConfigString (CONF_ORDERS ,"NOMINAL" );
@@ -52,7 +55,7 @@ public boolean init(String... filenames) {
5255 }
5356
5457 @ Override
55- public boolean processDataEvent (DataEvent event ) {
58+ public boolean processDataEventUser (DataEvent event ) {
5659 return bgmerger .mergeEvents (event );
5760 }
5861
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments