Skip to content

Commit d81469f

Browse files
committed
Fix includes
1 parent 8bc0347 commit d81469f

5 files changed

Lines changed: 5 additions & 3 deletions

File tree

Common/TableProducer/qVectorsTable.cxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545

4646
#include <TComplex.h>
4747
#include <TH3.h>
48-
#include <TMath.h>
4948
#include <TProfile3D.h>
5049
#include <TString.h>
5150

Common/Tasks/centralityQa.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
#include <TH1.h>
2323
#include <TProfile.h>
2424

25+
#include <cstdlib>
26+
2527
using namespace o2;
2628
using namespace o2::framework;
2729

Common/Tasks/centralityStudypp.cxx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
#include <TList.h>
3333
#include <TProfile.h>
3434

35-
#include <cstdint>
3635
#include <format>
3736
#include <map>
3837
#include <memory>
@@ -331,7 +330,7 @@ struct centralityStudypp {
331330
float multNTracksPV = collision.multNTracksPV();
332331

333332
if (applyVertexZEqualization) {
334-
float epsilon = 1e-2; // average value after which this collision will be disregarded
333+
float epsilon = 1e-2; // average value after which this collision will be disregarded
335334
float maxVertexZ = 15.0f; // max value for any equalization attempt
336335

337336
// same defaults as multCentTable in case of unhealthy signals

Common/Tasks/checkDataModelMC.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
#include <TH1.h>
2727

28+
#include <cstdint>
2829
#include <limits>
2930
#include <memory>
3031

Common/Tasks/qVectorsCorrection.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939

4040
#include <sys/types.h>
4141

42+
#include <concepts>
4243
#include <string>
4344
#include <vector>
4445

0 commit comments

Comments
 (0)