Skip to content

Commit 88aea76

Browse files
author
Szymon Pulawski
committed
Additionally fixing mismatch in FV0
1 parent 35ddd10 commit 88aea76

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • DataFormats/Detectors/FIT/FV0/include/DataFormatsFV0

DataFormats/Detectors/FIT/FV0/include/DataFormatsFV0/ChannelData.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ struct ChannelData {
7676
void print() const;
7777
void printLog() const;
7878
[[nodiscard]] uint8_t getChannelID() const { return ChId; }
79-
[[nodiscard]] uint16_t getTime() const { return CFDTime; }
80-
[[nodiscard]] uint16_t getAmp() const { return QTCAmpl; }
79+
[[nodiscard]] int16_t getTime() const { return CFDTime; }
80+
[[nodiscard]] int16_t getAmp() const { return QTCAmpl; }
8181

8282
bool operator==(ChannelData const& other) const
8383
{

0 commit comments

Comments
 (0)