Skip to content

Commit a0ba067

Browse files
committed
Fix includes
1 parent 8bc0347 commit a0ba067

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

PWGDQ/Core/MuonMatchingMlResponse.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020

2121
#include <Framework/Logger.h>
2222

23+
#include <algorithm>
24+
#include <cmath>
2325
#include <concepts>
2426
#include <cstdint>
2527
#include <string>
@@ -28,10 +30,9 @@
2830
// Fill the map of available input features
2931
// the key is the feature's name (std::string)
3032
// the value is the corresponding value in EnumInputFeatures
31-
#define FILL_MAP_MFTMUON_MATCH(FEATURE) \
32-
{ \
33-
#FEATURE, static_cast<uint8_t>(InputFeaturesMFTMuonMatch::FEATURE) \
34-
}
33+
#define FILL_MAP_MFTMUON_MATCH(FEATURE) \
34+
{ \
35+
#FEATURE, static_cast<uint8_t>(InputFeaturesMFTMuonMatch::FEATURE)}
3536

3637
// Check if the index of mCachedIndices (index associated to a FEATURE)
3738
// matches the entry in EnumInputFeatures associated to this FEATURE

PWGDQ/Tasks/DalitzSelection.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@
2424
#include "PWGDQ/Core/VarManager.h"
2525
#include "PWGDQ/DataModel/ReducedInfoTables.h"
2626

27+
#include "Common/DataModel/Centrality.h"
2728
#include "Common/DataModel/CollisionAssociationTables.h"
2829
#include "Common/DataModel/EventSelection.h"
2930
#include "Common/DataModel/PIDResponseTOF.h"
3031
#include "Common/DataModel/PIDResponseTPC.h"
32+
#include "Common/DataModel/TrackSelectionTables.h"
3133

3234
#include <CCDB/BasicCCDBManager.h>
3335
#include <DataFormatsParameters/GRPMagField.h>

PWGDQ/Tasks/qaMatching.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,12 @@
5858
#include <Math/SVector.h>
5959
#include <Math/Vector4D.h> // IWYU pragma: keep (do not replace with Math/Vector4Dfwd.h)
6060
#include <Math/Vector4Dfwd.h>
61+
#include <TAxis.h>
6162
#include <TGeoGlobalMagField.h>
6263
#include <TH1.h>
6364
#include <TH2.h>
6465
#include <TH3.h>
66+
#include <THnSparse.h>
6567
#include <TPDGCode.h>
6668

6769
#include <algorithm>

0 commit comments

Comments
 (0)