Skip to content

Commit d3ed73c

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

Some content is hidden

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

59 files changed

+281
-227
lines changed

Common/CCDB/EventSelectionParams.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
// o2-linter: disable=name/workflow-file
1818

19-
#include "EventSelectionParams.h"
19+
#include "Common/CCDB/EventSelectionParams.h"
2020

2121
#include <cstddef>
2222
#include <cstring>

Common/CCDB/EventSelectionParams.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@
1717
#ifndef COMMON_CCDB_EVENTSELECTIONPARAMS_H_
1818
#define COMMON_CCDB_EVENTSELECTIONPARAMS_H_
1919

20-
#include <Rtypes.h>
2120
#include <TMath.h>
2221

22+
#include <Rtypes.h>
23+
2324
namespace o2::aod::evsel
2425
{
2526
// Event selection criteria

Common/CCDB/macros/upload_event_selection_params.C

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

12-
#include "CCDB/CcdbApi.h"
12+
#include "Common/CCDB/EventSelectionParams.h"
13+
1314
#include "CCDB/BasicCCDBManager.h"
15+
#include "CCDB/CcdbApi.h"
16+
1417
#include "TString.h"
18+
1519
#include <map>
1620
#include <string>
17-
#include "EventSelectionParams.h"
21+
1822
using std::map;
1923
using std::string;
2024

Common/CCDB/macros/upload_event_selection_params_run3.C

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

12+
#include "Common/CCDB/EventSelectionParams.h"
13+
1214
#include "CCDB/CcdbApi.h"
15+
#include <Framework/Logger.h>
16+
1317
#include "TString.h"
18+
19+
#include <RtypesCore.h>
20+
21+
#include <cstdlib>
1422
#include <map>
1523
#include <string>
16-
#include "EventSelectionParams.h"
1724
using std::map;
1825
using std::string;
1926

@@ -140,4 +147,4 @@ void fillMapOfCustomOrbitShifts(std::map<int, int>& mapOrbitShift)
140147
mapOrbitShift[523797] = 41;
141148
mapOrbitShift[523821] = 36;
142149
mapOrbitShift[523897] = 38;
143-
}
150+
}

Common/CCDB/macros/upload_trigger_aliases.C

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

12-
#include "CCDB/CcdbApi.h"
12+
#include "Common/CCDB/TriggerAliases.h"
13+
1314
#include "CCDB/BasicCCDBManager.h"
15+
#include "CCDB/CcdbApi.h"
16+
#include <Framework/Logger.h>
17+
1418
#include "TObjArray.h"
15-
#include "TriggerAliases.h"
16-
#include "TTree.h"
1719
#include "TString.h"
20+
21+
#include <RtypesCore.h>
22+
1823
#include <fstream>
1924
#include <map>
2025
#include <string>

Common/CCDB/macros/upload_trigger_aliases_run3.C

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

12-
#include "DataFormatsCTP/Configuration.h"
13-
#include "CCDB/CcdbApi.h"
12+
#include "Common/CCDB/TriggerAliases.h"
13+
1414
#include "CCDB/BasicCCDBManager.h"
15+
#include "CCDB/CcdbApi.h"
16+
#include "DataFormatsCTP/Configuration.h"
17+
#include <Framework/Logger.h>
18+
1519
#include "TObjArray.h"
16-
#include "TriggerAliases.h"
17-
#include "TTree.h"
1820
#include "TString.h"
21+
22+
#include <RtypesCore.h>
23+
1924
#include <fstream>
2025
#include <map>
2126
#include <string>

Common/Core/EventMixing.h

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

12-
#ifndef ANALYSIS_CORE_EVENTMIXING_H_
13-
#define ANALYSIS_CORE_EVENTMIXING_H_
12+
#ifndef COMMON_CORE_EVENTMIXING_H_
13+
#define COMMON_CORE_EVENTMIXING_H_
1414

1515
namespace eventmixing
1616
{
@@ -47,4 +47,4 @@ static int getMixingBin(const T1& vtxBins, const T1& multBins, const T2& vtx, co
4747
}
4848
}; // namespace eventmixing
4949

50-
#endif /* ANALYSIS_CORE_EVENTMIXING_H_ */
50+
#endif // COMMON_CORE_EVENTMIXING_H_

Common/Core/FFitWeights.cxx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@
1616

1717
#include "FFitWeights.h"
1818

19-
#include "Framework/Logger.h"
19+
#include <Framework/Logger.h>
2020

2121
#include <TCollection.h>
2222
#include <TH1.h>
23+
#include <TH2.h>
2324
#include <TNamed.h>
2425
#include <TObjArray.h>
26+
#include <TProfile.h>
2527
#include <TSpline.h>
2628
#include <TString.h>
2729

Common/Core/MetadataHelper.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#include <Framework/InitContext.h>
2222
#include <Framework/Logger.h>
2323

24+
#include <TString.h>
2425
#include <TSystem.h>
2526

2627
#include <array>

Common/Core/PID/PIDTOFParamService.cxx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,24 @@
1818

1919
#include "PIDTOFParamService.h"
2020

21+
#include "Common/Core/CollisionTypeHelper.h"
22+
#include "Common/Core/MetadataHelper.h"
23+
24+
#include <CCDB/BasicCCDBManager.h>
25+
#include <DataFormatsParameters/GRPLHCIFData.h>
26+
#include <DataFormatsTOF/ParameterContainers.h>
2127
#include <Framework/CommonServices.h>
28+
#include <Framework/Logger.h>
2229
#include <Framework/Plugins.h>
2330
#include <Framework/ServiceHandle.h>
2431
#include <Framework/ServiceSpec.h>
32+
#include <Framework/TypeIdHelpers.h>
33+
#include <PID/PIDTOF.h>
34+
35+
#include <TGraph.h>
2536

37+
#include <chrono>
38+
#include <cstdint>
2639
#include <map>
2740
#include <string>
2841

0 commit comments

Comments
 (0)