Skip to content

Commit 406d853

Browse files
author
jryu
committed
Apply clang-format
1 parent 31b8bbc commit 406d853

3 files changed

Lines changed: 8 additions & 11 deletions

File tree

DataFormats/Detectors/ITSMFT/common/include/DataFormatsITSMFT/StuckPixelData.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#include <vector>
2828
#include <cstdint>
29-
#include <Rtypes.h> // ClassDefNV
29+
#include <Rtypes.h> // ClassDefNV
3030

3131
namespace o2
3232
{
@@ -35,10 +35,10 @@ namespace itsmft
3535

3636
/// One stuck-pixel (RepeatingPixel error) record.
3737
struct StuckPixelEntry {
38-
Long64_t orbit{0}; ///< first orbit of the TF in which the error was seen
39-
uint16_t chipID{0}; ///< global chip ID (ITS only)
40-
uint16_t row{0}; ///< pixel row
41-
uint16_t col{0}; ///< pixel column
38+
Long64_t orbit{0}; ///< first orbit of the TF in which the error was seen
39+
uint16_t chipID{0}; ///< global chip ID (ITS only)
40+
uint16_t row{0}; ///< pixel row
41+
uint16_t col{0}; ///< pixel column
4242

4343
StuckPixelEntry() = default;
4444
StuckPixelEntry(Long64_t o, uint16_t c, uint16_t r, uint16_t col_)

Detectors/ITSMFT/common/workflow/include/ITSMFTWorkflow/DeadMapBuilderSpec.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ class ITSMFTDeadMapBuilder : public Task
143143
UShort_t mErrChipID = 0;
144144
UShort_t mErrRow = 0;
145145
UShort_t mErrCol = 0;
146-
147146
};
148147

149148
// Create a processor spec

Detectors/ITSMFT/common/workflow/src/DeadMapBuilderSpec.cxx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include "DataFormatsITSMFT/Digit.h"
1818
#include "DataFormatsITSMFT/CompCluster.h"
1919
#include "DataFormatsITSMFT/TimeDeadMap.h"
20-
#include "DataFormatsITSMFT/StuckPixelData.h" // NEW
20+
#include "DataFormatsITSMFT/StuckPixelData.h" // NEW
2121
#include "ITSMFTReconstruction/DecodingStat.h"
2222
#include <TFile.h>
2323

@@ -375,8 +375,7 @@ void ITSMFTDeadMapBuilder::PrepareOutputCcdb(EndOfStreamContext* ec, std::string
375375
long tend = o2::ccdb::getCurrentTimestamp();
376376
std::map<std::string, std::string> md = {
377377
{"map_version", MAP_VERSION},
378-
{"runNumber", std::to_string(mRunNumber)}
379-
};
378+
{"runNumber", std::to_string(mRunNumber)}};
380379

381380
std::string path = mRunMFT ? "MFT/Calib/" : "ITS/Calib/";
382381

@@ -570,8 +569,7 @@ DataProcessorSpec getITSMFTDeadMapBuilderSpec(std::string datasource, bool doMFT
570569
{"outfile", VariantType::String, objectname_default, {"ROOT object file name."}},
571570
{"local-output", VariantType::Bool, false, {"Save ROOT file locally."}},
572571
{"output-dir", VariantType::String, std::string("./"), {"Local output directory."}},
573-
{"save-stuck-pixels", VariantType::String, std::string(""),
574-
{"Enable ITS stuck-pixel collection and set the CCDB/local ROOT filename. Empty = disabled."}},
572+
{"save-stuck-pixels", VariantType::String, std::string(""), {"Enable ITS stuck-pixel collection and set the CCDB/local ROOT filename. Empty = disabled."}},
575573
}};
576574
}
577575

0 commit comments

Comments
 (0)