Skip to content

Commit 03d5582

Browse files
committed
ITSMFT: account for possible delay of received ROFs
Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch>
1 parent 3dbfb76 commit 03d5582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Detectors/ITSMFT/common/workflow/src/ClustererSpec.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ void ClustererDPL<N>::run(ProcessingContext& pc)
125125
for (int iROF{0}; iROF < nROFsTF; ++iROF) {
126126
auto& rof = expClusRofVec[iROF];
127127
int orb = iROF * par.getROFLengthInBC(iLayer) / o2::constants::lhc::LHCMaxBunches + firstTForbit;
128-
int bc = iROF * par.getROFLengthInBC(iLayer) % o2::constants::lhc::LHCMaxBunches;
128+
int bc = iROF * par.getROFLengthInBC(iLayer) % o2::constants::lhc::LHCMaxBunches + par.getROFDelayInBC(iLayer);
129129
o2::InteractionRecord ir(bc, orb);
130130
rof.setBCData(ir);
131131
rof.setROFrame(iROF);

0 commit comments

Comments
 (0)