Skip to content

Commit 71b45ac

Browse files
maciaccoGiorgioAlbertoLucia
authored andcommitted
remove default constructor + fix compilation of digit and vector<digit>
1 parent 8c47460 commit 71b45ac

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ namespace o2::iotof
2626
class Digit : public o2::itsmft::Digit
2727
{
2828
public:
29-
Digit() = default;
3029
~Digit() = default;
3130
Digit(UShort_t chipindex = 0, UShort_t row = 0, UShort_t col = 0, Int_t charge = 0, double time = 0.)
3231
: o2::itsmft::Digit(chipindex, row, col, charge), mTime(time) {};

Detectors/Upgrades/ALICE3/IOTOF/DataFormatsIOTOF/src/DataFormatsIOTOFLinkDef.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@
1616
#pragma link off all functions;
1717

1818
#pragma link C++ class o2::iotof::Digit + ;
19-
// #pragma link C++ class std::vector < o2::iotof::Digit> + ;
19+
#pragma link C++ class std::vector < o2::iotof::Digit> + ;
20+
2021
#endif

0 commit comments

Comments
 (0)