Skip to content

Commit 614d8cb

Browse files
committed
Fix includes and using statements
1 parent bca6d9b commit 614d8cb

File tree

335 files changed

+5364
-4762
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

335 files changed

+5364
-4762
lines changed

PWGLF/DataModel/EPCalibrationTables.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@
1616
#ifndef PWGLF_DATAMODEL_EPCALIBRATIONTABLES_H_
1717
#define PWGLF_DATAMODEL_EPCALIBRATIONTABLES_H_
1818

19-
#include "Common/Core/RecoDecay.h"
20-
#include "Common/DataModel/TrackSelectionTables.h"
21-
22-
#include "Framework/AnalysisDataModel.h"
19+
#include <Framework/AnalysisDataModel.h>
2320

2421
#include <cmath>
2522

PWGLF/DataModel/FilterF1ProtonTables.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@
1616
#ifndef PWGLF_DATAMODEL_FILTERF1PROTONTABLES_H_
1717
#define PWGLF_DATAMODEL_FILTERF1PROTONTABLES_H_
1818

19-
#include "Common/Core/RecoDecay.h"
20-
#include "Common/DataModel/TrackSelectionTables.h"
21-
22-
#include "Framework/AnalysisDataModel.h"
19+
#include <Framework/AnalysisDataModel.h>
2320

2421
#include <cmath>
2522

PWGLF/DataModel/LFAntinCexTables.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
#ifndef PWGLF_DATAMODEL_LFANTINCEXTABLES_H_
1919
#define PWGLF_DATAMODEL_LFANTINCEXTABLES_H_
2020

21-
#include "Framework/ASoAHelpers.h"
22-
#include "Framework/AnalysisDataModel.h"
21+
#include <Framework/AnalysisDataModel.h>
22+
23+
#include <cstdint>
2324

2425
namespace o2::aod
2526
{

PWGLF/DataModel/LFCKSSpinalignmentTables.h

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,8 @@
1717
#ifndef PWGLF_DATAMODEL_LFCKSSPINALIGNMENTTABLES_H_
1818
#define PWGLF_DATAMODEL_LFCKSSPINALIGNMENTTABLES_H_
1919

20-
#include "Common/Core/RecoDecay.h"
21-
#include "Common/DataModel/Centrality.h"
22-
#include "Common/DataModel/Multiplicity.h"
23-
#include "Common/DataModel/TrackSelectionTables.h"
24-
25-
#include "Framework/ASoA.h"
26-
#include "Framework/AnalysisDataModel.h"
20+
#include <Framework/ASoA.h>
21+
#include <Framework/AnalysisDataModel.h>
2722

2823
#include <cmath>
2924
#include <cstdint>

PWGLF/DataModel/LFClusterStudiesTable.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@
1111
//
1212
// Author: Giorgio Alberto Lucia
1313

14-
#include "Framework/ASoAHelpers.h"
15-
#include "Framework/AnalysisDataModel.h"
14+
#include <Framework/AnalysisDataModel.h>
15+
16+
#include <cstdint>
1617

1718
#ifndef PWGLF_DATAMODEL_LFCLUSTERSTUDIESTABLE_H_
1819
#define PWGLF_DATAMODEL_LFCLUSTERSTUDIESTABLE_H_

PWGLF/DataModel/LFDoubleCascTables.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
#include "Framework/AnalysisDataModel.h"
13-
#include "Framework/ASoAHelpers.h"
12+
#include <Framework/AnalysisDataModel.h>
1413

1514
#ifndef PWGLF_DATAMODEL_LFDOUBLECASCTABLES_H_
1615
#define PWGLF_DATAMODEL_LFDOUBLECASCTABLES_H_

PWGLF/DataModel/LFEbyeTables.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
#include "Framework/AnalysisDataModel.h"
13-
#include "Framework/ASoAHelpers.h"
12+
#include <Framework/AnalysisDataModel.h>
13+
14+
#include <cstdint>
1415

1516
#ifndef PWGLF_DATAMODEL_LFEBYETABLES_H_
1617
#define PWGLF_DATAMODEL_LFEBYETABLES_H_

PWGLF/DataModel/LFF1Tables.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@
1616
#ifndef PWGLF_DATAMODEL_LFF1TABLES_H_
1717
#define PWGLF_DATAMODEL_LFF1TABLES_H_
1818

19-
#include "Common/Core/RecoDecay.h"
20-
#include "Common/DataModel/TrackSelectionTables.h"
21-
22-
#include "Framework/AnalysisDataModel.h"
19+
#include <Framework/AnalysisDataModel.h>
2320

2421
#include <cmath>
2522

PWGLF/DataModel/LFHStrangeCorrelationTables.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,11 @@
2323
#define PWGLF_DATAMODEL_LFHSTRANGECORRELATIONTABLES_H_
2424

2525
/// this data model uses the LF one, add here
26-
#include "PWGLF/DataModel/LFStrangenessTables.h"
2726

28-
#include "Common/Core/RecoDecay.h"
27+
#include "PWGLF/DataModel/LFStrangenessTables.h" // IWYU pragma: keep
2928

30-
#include "CommonConstants/PhysicsConstants.h"
31-
#include "Framework/AnalysisDataModel.h"
3229
#include <Framework/ASoA.h>
30+
#include <Framework/AnalysisDataModel.h>
3331

3432
// Simple checker
3533
#define bitcheck(var, nbit) ((var) & (1 << (nbit)))

PWGLF/DataModel/LFHyperNucleiKinkTables.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
/// \brief Slim hypernuclei kink tables
1414
/// \author Yuanzhe Wang <yuanzhe.wang@cern.ch>
1515

16-
#include "Framework/ASoAHelpers.h"
17-
#include "Framework/AnalysisDataModel.h"
16+
#include <Framework/AnalysisDataModel.h>
17+
18+
#include <cstdint>
1819

1920
#ifndef PWGLF_DATAMODEL_LFHYPERNUCLEIKINKTABLES_H_
2021
#define PWGLF_DATAMODEL_LFHYPERNUCLEIKINKTABLES_H_

0 commit comments

Comments
 (0)