Skip to content

Commit 715c3b9

Browse files
committed
Fix includes
1 parent 46f01bc commit 715c3b9

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

PWGDQ/Macros/dqFlowAccWeights.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ void dqFlowAccWeights(int64_t tmin = 1546300800000, int64_t tmax = 1577833200000
6464
if (!ccdbHost.empty()) {
6565
LOGP(info, "Storing alignment object on {}/{}", ccdbHost, objectPath);
6666
o2::ccdb::CcdbApi api;
67-
map<string, string> metadata; // can be empty
67+
std::map<std::string, std::string> metadata; // can be empty
6868
metadata.insert(std::pair{"comment", Form("Acceptance weights for %s", Period.c_str())});
6969
api.init(ccdbHost.c_str());
7070
try {

PWGDQ/Tasks/global-muon-matcher.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include <CCDB/CcdbApi.h>
2727
#include <CommonConstants/LHCConstants.h>
2828
#include <CommonConstants/MathConstants.h>
29+
#include <CommonUtils/ConfigurableParam.h>
2930
#include <DataFormatsParameters/GRPMagField.h>
3031
#include <DetectorsBase/GeometryManager.h>
3132
#include <DetectorsBase/Propagator.h>

PWGDQ/Tasks/mftMchMatcher.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include <CCDB/BasicCCDBManager.h>
2727
#include <CCDB/CcdbApi.h>
2828
#include <CommonConstants/LHCConstants.h>
29+
#include <CommonConstants/MathConstants.h>
2930
#include <DataFormatsParameters/GRPMagField.h>
3031
#include <DetectorsBase/GeometryManager.h>
3132
#include <DetectorsBase/Propagator.h>
@@ -46,7 +47,6 @@
4647
#include <Math/MatrixRepresentationsStatic.h>
4748
#include <Math/SMatrix.h>
4849
#include <Math/SVector.h>
49-
#include <TMath.h>
5050
#include <TTree.h>
5151

5252
#include <RtypesCore.h>

PWGDQ/Tasks/muonGlobalAlignment.cxx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,10 @@
5656
#include <Math/MatrixRepresentationsStatic.h>
5757
#include <Math/SMatrix.h>
5858
#include <Math/SVector.h>
59-
#include <Math/Vector3D.h>
60-
#include <Math/Vector4D.h>
59+
#include <Math/Vector3D.h> // IWYU pragma: keep (do not replace with Math/Vector3Dfwd.h)
60+
#include <Math/Vector3Dfwd.h>
61+
#include <Math/Vector4D.h> // IWYU pragma: keep (do not replace with Math/Vector4Dfwd.h)
62+
#include <Math/Vector4Dfwd.h>
6163
#include <TGeoGlobalMagField.h>
6264
#include <TH1.h>
6365
#include <TH2.h>

0 commit comments

Comments
 (0)