Skip to content

Commit 8fd5fe5

Browse files
authored
Merge pull request #84 from alibuild/alibot-cleanup-15208
Please consider the following formatting changes to #15208
2 parents 50e8f86 + ab6978b commit 8fd5fe5

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Tutorials/src/ccdbtableaccess.cxx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
/// \author Daiki Sekihata
1414
/// \since 2026-03-01
1515

16-
#include "Framework/runDataProcessing.h"
17-
#include "Framework/AnalysisTask.h"
1816
#include "CCDB/BasicCCDBManager.h"
1917
#include "DataFormatsCalibration/MeanVertexObject.h"
2018
#include "DataFormatsParameters/GRPMagField.h"
2119
#include "DataFormatsParameters/GRPObject.h"
20+
#include "Framework/AnalysisTask.h"
21+
#include "Framework/runDataProcessing.h"
2222

2323
#include <chrono>
2424

@@ -30,12 +30,12 @@ namespace o2::aod
3030
{
3131
namespace testccdb
3232
{
33-
DECLARE_SOA_CCDB_COLUMN(GRPMagField, grpMagField, o2::parameters::GRPMagField, "GLO/Config/GRPMagField"); //!
33+
DECLARE_SOA_CCDB_COLUMN(GRPMagField, grpMagField, o2::parameters::GRPMagField, "GLO/Config/GRPMagField"); //!
3434
DECLARE_SOA_CCDB_COLUMN(MeanVertex, meanVertex, o2::dataformats::MeanVertexObject, "GLO/Calib/MeanVertex"); //!
3535
} // namespace testccdb
3636

3737
DECLARE_SOA_TIMESTAMPED_TABLE(MyCCDBObjects, aod::Timestamps, o2::aod::timestamp::Timestamp, 1, "MYCCDBOBJ", //!
38-
testccdb::GRPMagField, testccdb::MeanVertex);
38+
testccdb::GRPMagField, testccdb::MeanVertex);
3939
} // namespace o2::aod
4040

4141
struct TestCCDBTable {
@@ -46,7 +46,7 @@ struct TestCCDBTable {
4646
void process(MyBCs const& bcs)
4747
{
4848
int i = 0;
49-
for (const auto& bc: bcs) {
49+
for (const auto& bc : bcs) {
5050
if (i >= 5) {
5151
return;
5252
}
@@ -56,7 +56,6 @@ struct TestCCDBTable {
5656
i++;
5757
}
5858
}
59-
6059
};
6160

6261
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)

0 commit comments

Comments
 (0)