Skip to content

Commit cc3a7e3

Browse files
author
Marcello Di Costanzo
committed
Change cluster time type to double
1 parent 6e15068 commit cc3a7e3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • Detectors/Upgrades/ALICE3/IOTOF

Detectors/Upgrades/ALICE3/IOTOF/DataFormatsIOTOF/include/DataFormatsIOTOF/Cluster.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ struct Cluster {
2727
int16_t subDetID = -1;
2828
int16_t layer = -1;
2929
int16_t disk = -1;
30-
float time = 0.f;
30+
double time = 0.0;
3131

3232
std::string asString() const;
3333

Detectors/Upgrades/ALICE3/IOTOF/reconstruction/src/Clusterer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ void Clusterer::ClustererThread::finishChipSingleHitFast(gsl::span<const Digit>
161161
const uint16_t chipID = digit.getChipIndex();
162162
const uint16_t row = digit.getRow();
163163
const uint16_t col = digit.getColumn();
164-
const float time = digit.getTime();
164+
const double time = digit.getTime();
165165

166166
if (labelsClusPtr) {
167167
int nlab = 0;

0 commit comments

Comments
 (0)