diff --git a/Detectors/Upgrades/ALICE3/IOTOF/DataFormatsIOTOF/include/DataFormatsIOTOF/Digit.h b/Detectors/Upgrades/ALICE3/IOTOF/DataFormatsIOTOF/include/DataFormatsIOTOF/Digit.h index 1e526716972d5..5dbe98839302d 100644 --- a/Detectors/Upgrades/ALICE3/IOTOF/DataFormatsIOTOF/include/DataFormatsIOTOF/Digit.h +++ b/Detectors/Upgrades/ALICE3/IOTOF/DataFormatsIOTOF/include/DataFormatsIOTOF/Digit.h @@ -29,7 +29,7 @@ class Digit : public o2::itsmft::Digit public: ~Digit() = default; Digit(UShort_t chipindex = 0, UShort_t row = 0, UShort_t col = 0, Int_t charge = 0, double time = 0.) - : o2::itsmft::Digit(chipindex, row, col, charge), mTime(time){}; + : o2::itsmft::Digit(chipindex, row, col, charge), mTime(time) {}; // Setters void setTime(double time) { mTime = time; } diff --git a/Detectors/Upgrades/ALICE3/IOTOF/base/include/IOTOFBase/IOTOFBaseParam.h b/Detectors/Upgrades/ALICE3/IOTOF/base/include/IOTOFBase/IOTOFBaseParam.h index 6caca9514fa16..194d44927562a 100644 --- a/Detectors/Upgrades/ALICE3/IOTOF/base/include/IOTOFBase/IOTOFBaseParam.h +++ b/Detectors/Upgrades/ALICE3/IOTOF/base/include/IOTOFBase/IOTOFBaseParam.h @@ -15,7 +15,6 @@ #include "CommonUtils/ConfigurableParam.h" #include "CommonUtils/ConfigurableParamHelper.h" - namespace o2 { namespace iotof diff --git a/Detectors/Upgrades/ALICE3/IOTOF/simulation/include/IOTOFSimulation/Chip.h b/Detectors/Upgrades/ALICE3/IOTOF/simulation/include/IOTOFSimulation/Chip.h index 43729682d06dc..13a830ee16b26 100644 --- a/Detectors/Upgrades/ALICE3/IOTOF/simulation/include/IOTOFSimulation/Chip.h +++ b/Detectors/Upgrades/ALICE3/IOTOF/simulation/include/IOTOFSimulation/Chip.h @@ -65,10 +65,10 @@ class Chip void setChipIndex(Int_t index) { mChipIndex = index; } Int_t getChipIndex() const { return mChipIndex; } - + void disable(bool disable) { mDisabled = disable; } bool isDisabled() const { return mDisabled; } - + /// Get the number of point assigned to the chip /// @return Number of points assigned to the chip Int_t getNumberOfDigits() const { return mDigits.size(); } @@ -79,8 +79,8 @@ class Chip void addDigit(UShort_t row, UShort_t col, Int_t charge, double time); protected: - Int_t mChipIndex = -1; ///< Chip ID - bool mDisabled = false; ///< Flag to indicate if the chip is disabled (e.g. due to dead channels) + Int_t mChipIndex = -1; ///< Chip ID + bool mDisabled = false; ///< Flag to indicate if the chip is disabled (e.g. due to dead channels) std::map mDigits; ///< Map of fired digits, possibly in multiple frames ClassDefNV(Chip, 1);