Skip to content

Commit 67969ee

Browse files
Merge pull request #2 from alibuild/alibot-cleanup-15492
Please consider the following formatting changes to AliceO2Group#15492
2 parents 9b6f83a + a44ce20 commit 67969ee

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

  • Detectors/Upgrades/ALICE3/IOTOF

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Digit : public o2::itsmft::Digit
2929
public:
3030
~Digit() = default;
3131
Digit(UShort_t chipindex = 0, UShort_t row = 0, UShort_t col = 0, Int_t charge = 0, double time = 0.)
32-
: o2::itsmft::Digit(chipindex, row, col, charge), mTime(time){};
32+
: o2::itsmft::Digit(chipindex, row, col, charge), mTime(time) {};
3333

3434
// Setters
3535
void setTime(double time) { mTime = time; }

Detectors/Upgrades/ALICE3/IOTOF/base/include/IOTOFBase/IOTOFBaseParam.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include "CommonUtils/ConfigurableParam.h"
1616
#include "CommonUtils/ConfigurableParamHelper.h"
1717

18-
1918
namespace o2
2019
{
2120
namespace iotof

Detectors/Upgrades/ALICE3/IOTOF/simulation/include/IOTOFSimulation/Chip.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ class Chip
6565

6666
void setChipIndex(Int_t index) { mChipIndex = index; }
6767
Int_t getChipIndex() const { return mChipIndex; }
68-
68+
6969
void disable(bool disable) { mDisabled = disable; }
7070
bool isDisabled() const { return mDisabled; }
71-
71+
7272
/// Get the number of point assigned to the chip
7373
/// @return Number of points assigned to the chip
7474
Int_t getNumberOfDigits() const { return mDigits.size(); }
@@ -79,8 +79,8 @@ class Chip
7979
void addDigit(UShort_t row, UShort_t col, Int_t charge, double time);
8080

8181
protected:
82-
Int_t mChipIndex = -1; ///< Chip ID
83-
bool mDisabled = false; ///< Flag to indicate if the chip is disabled (e.g. due to dead channels)
82+
Int_t mChipIndex = -1; ///< Chip ID
83+
bool mDisabled = false; ///< Flag to indicate if the chip is disabled (e.g. due to dead channels)
8484
std::map<ULong64_t, o2::iotof::LabeledDigit> mDigits; ///< Map of fired digits, possibly in multiple frames
8585

8686
ClassDefNV(Chip, 1);

0 commit comments

Comments
 (0)