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 @@ -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 ();
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