@@ -20,7 +20,6 @@ import { jsonPatch } from '../../../utilities/fetch/jsonPatch.js';
2020import { jsonPut } from '../../../utilities/fetch/jsonPut.js' ;
2121import { SkimmingStage } from '../../../domain/enums/SkimmingStage.js' ;
2222import { NumericalComparisonFilterModel } from '../../../components/Filters/common/filters/NumericalComparisonFilterModel.js' ;
23- import { RunDetectorsSelectionModel } from '../RunDetectorsSelectionModel.js' ;
2423import { jsonFetch } from '../../../utilities/fetch/jsonFetch.js' ;
2524
2625/**
@@ -44,8 +43,6 @@ export class RunsPerDataPassOverviewModel extends FixedPdpBeamTypeRunsOverviewMo
4443 this . _gaqSummary$ = new ObservableData ( RemoteData . notAsked ( ) ) ;
4544 this . _gaqSummary$ . bubbleTo ( this ) ;
4645
47- this . _mcReproducibleAsNotBad = false ;
48-
4946 this . _markAsSkimmableRequestResult$ = new ObservableData ( RemoteData . notAsked ( ) ) ;
5047 this . _markAsSkimmableRequestResult$ . bubbleTo ( this ) ;
5148
@@ -57,9 +54,6 @@ export class RunsPerDataPassOverviewModel extends FixedPdpBeamTypeRunsOverviewMo
5754 integer : false ,
5855 } ) ) ;
5956
60- this . _runDetectorsSelectionModel = new RunDetectorsSelectionModel ( ) ;
61- this . _runDetectorsSelectionModel . bubbleTo ( this ) ;
62-
6357 this . _freezeOrUnfreezeActionState$ = new ObservableData ( RemoteData . notAsked ( ) ) ;
6458 this . _freezeOrUnfreezeActionState$ . bubbleTo ( this ) ;
6559
@@ -110,8 +104,6 @@ export class RunsPerDataPassOverviewModel extends FixedPdpBeamTypeRunsOverviewMo
110104 return ;
111105 }
112106
113- this . _runDetectorsSelectionModel . reset ( ) ;
114-
115107 this . _fetchQcSummary ( ) ;
116108 this . _fetchGaqSummary ( ) ;
117109 await this . _fetchDataPass ( ) ;
@@ -308,35 +300,6 @@ export class RunsPerDataPassOverviewModel extends FixedPdpBeamTypeRunsOverviewMo
308300 return this . _dataPassId ;
309301 }
310302
311- /**
312- * Set mcReproducibleAsNotBad
313- *
314- * @param {boolean } mcReproducibleAsNotBad new value
315- * @return {void }
316- */
317- setMcReproducibleAsNotBad ( mcReproducibleAsNotBad ) {
318- this . _mcReproducibleAsNotBad = mcReproducibleAsNotBad ;
319- this . load ( ) ;
320- }
321-
322- /**
323- * Get mcReproducibleAsNotBad
324- *
325- * @return {boolean } mcReproducibleAsNotBad
326- */
327- get mcReproducibleAsNotBad ( ) {
328- return this . _mcReproducibleAsNotBad ;
329- }
330-
331- /**
332- * Returns the run detectors selection model
333- *
334- * @return {RunDetectorsSelectionModel } selection model
335- */
336- get runDetectorsSelectionModel ( ) {
337- return this . _runDetectorsSelectionModel ;
338- }
339-
340303 /**
341304 * Fetch data pass data which runs are fetched
342305 * @return {Promise<void> } promise
0 commit comments