Make block start and stop pulse_id more readable

This commit is contained in:
2020-06-02 18:12:13 +02:00
parent 1af9d10683
commit 9c32529638
+5 -4
View File
@@ -107,10 +107,11 @@ ImageMetadataBlock* ImageAssembler::get_metadata_buffer(const uint64_t bunch_id)
auto meta_offset = get_metadata_offset(slot_id, 0);
const auto meta_offset_step = 1;
meta_buffer_[slot_id].block_start_pulse_id =
bunch_id * BUFFER_BLOCK_SIZE;
meta_buffer_[slot_id].block_stop_pulse_id =
meta_buffer_->block_start_pulse_id + BUFFER_BLOCK_SIZE - 1;
uint64_t start_pulse_id = bunch_id * BUFFER_BLOCK_SIZE;
meta_buffer_[slot_id].block_start_pulse_id = start_pulse_id;
uint64_t stop_pulse_id = start_pulse_id + BUFFER_BLOCK_SIZE - 1;
meta_buffer_[slot_id].block_stop_pulse_id = stop_pulse_id;
for (size_t i_pulse=0; i_pulse < BUFFER_BLOCK_SIZE; i_pulse++) {