Skip to content

Commit 32937c1

Browse files
aferrero2707aphecetche
authored andcommitted
[MCH] increased maximum data delay
The maximum difference between the SAMPA and DAQ orbits is increased to 50 in order to properly handle very noisy channels, for which there might be a substantial delay in sending out the data packets.
1 parent a42dd80 commit 32937c1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Detectors/MUON/MCH/Raw/Decoder/src/DataDecoder.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ int32_t DataDecoder::getDigitTime(uint32_t orbitStart, uint32_t bcStart, uint32_
657657
// Digits might be sent out later than the orbit in which they were recorded.
658658
// We account for this by allowing an extra -3 / +10 orbits when converting the
659659
// difference from orbit numbers to bunch crossings.
660-
int64_t dBcMin = (dOrbit - 10) * bcInOrbit;
660+
int64_t dBcMin = (dOrbit - 50) * bcInOrbit;
661661
int64_t dBcMax = (dOrbit + 3) * bcInOrbit;
662662

663663
// Difference in bunch crossing values

0 commit comments

Comments
 (0)