Skip to content

Commit a238d86

Browse files
committed
No need for EoS and autoquit for TOF matcher
1 parent e1b15fa commit a238d86

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Detectors/GlobalTrackingWorkflow/tofworkflow/src/RecoWorkflowSpec.cxx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,6 @@ class TOFDPLRecoWorkflowTask
5858

5959
void run(framework::ProcessingContext& pc)
6060
{
61-
static bool finished = false;
62-
if (finished) {
63-
return;
64-
}
6561

6662
//>>>---------- attach input data --------------->>>
6763
const auto clustersRO = pc.inputs().get<gsl::span<o2::tof::Cluster>>("tofcluster");
@@ -120,9 +116,6 @@ class TOFDPLRecoWorkflowTask
120116
pc.outputs().snapshot(Output{o2::header::gDataOriginTOF, "CALIBINFOS", 0, Lifetime::Timeframe}, mMatcher.getCalibVector());
121117

122118
// declare done
123-
finished = true;
124-
//pc.services().get<ControlService>().readyToQuit(QuitRequest::Me);
125-
pc.services().get<ControlService>().endOfStream();
126119
}
127120

128121
private:

0 commit comments

Comments
 (0)