Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions DataFormats/Detectors/FIT/FT0/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

o2_add_library(DataFormatsFT0
SOURCES src/Digit.cxx
SOURCES src/DigitsTemp.cxx
SOURCES src/ChannelData.cxx
SOURCES src/RecPoints.cxx
SOURCES src/RawEventData.cxx
Expand All @@ -29,7 +28,6 @@ o2_add_library(DataFormatsFT0

o2_target_root_dictionary(DataFormatsFT0
HEADERS include/DataFormatsFT0/Digit.h
include/DataFormatsFT0/DigitsTemp.h
include/DataFormatsFT0/ChannelData.h
include/DataFormatsFT0/RecPoints.h
include/DataFormatsFT0/MCLabel.h
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ struct ChannelData {

bool operator==(ChannelData const& other) const
{
return std::tie(ChId, CFDTime, QTCAmpl) == std::tie(other.ChId, other.CFDTime, other.QTCAmpl);
return std::tie(ChId, CFDTime, QTCAmpl, ChainQTC) == std::tie(other.ChId, other.CFDTime, other.QTCAmpl, other.ChainQTC);
}
ClassDefNV(ChannelData, 4);
};
Expand Down
100 changes: 0 additions & 100 deletions DataFormats/Detectors/FIT/FT0/include/DataFormatsFT0/DigitsTemp.h

This file was deleted.

Loading