Skip to content

Commit 3027a22

Browse files
author
Maurice Coquet
committed
Adding missing includes
1 parent 44b99cf commit 3027a22

12 files changed

+30
-0
lines changed

PWGDQ/Core/AnalysisCut.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
#include "PWGDQ/Core/AnalysisCut.h"
1313

1414
#include <iostream>
15+
#include <vector>
16+
1517
using std::cout;
1618
using std::endl;
1719

PWGDQ/Core/MCSignalLibrary.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#define PWGDQ_CORE_MCSIGNALLIBRARY_H_
1717

1818
#include <string>
19+
#include <vector>
20+
1921
#include "rapidjson/document.h"
2022
#include "PWGDQ/Core/MCProng.h"
2123
#include "PWGDQ/Core/MCSignal.h"

PWGDQ/Core/MixingHandler.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
#include <TList.h>
2525
#include <TString.h>
2626

27+
#include <vector>
28+
2729
#include "PWGDQ/Core/HistogramManager.h"
2830
#include "PWGDQ/Core/VarManager.h"
2931

PWGDQ/Core/MixingLibrary.cxx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
//
1414
#include "PWGDQ/Core/MixingLibrary.h"
1515

16+
#include <string>
17+
#include <vector>
18+
1619
void o2::aod::dqmixing::SetUpMixing(MixingHandler* mh, const char* mixingVarible)
1720
{
1821
std::string nameStr = mixingVarible;

PWGDQ/TableProducer/generatedQuarkoniaMC.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151
#include <iterator>
5252
#include <map>
5353
#include <utility>
54+
#include <string>
55+
#include <vector>
5456

5557
using namespace o2;
5658
using namespace o2::framework;

PWGDQ/TableProducer/tableMakerJpsiHf.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
/// \author Fabrizio Grosa <fabrizio.grosa@cern.ch>, CERN
1616

1717
#include <string>
18+
#include <memory>
19+
#include <vector>
1820

1921
#include "Framework/AnalysisTask.h"
2022
#include "Framework/AnalysisDataModel.h"

PWGDQ/Tasks/DalitzSelection.cxx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@
3737
#include "Framework/DataTypes.h"
3838
#include "Framework/runDataProcessing.h"
3939

40+
#include <string>
41+
#include <map>
42+
#include <vector>
43+
#include <memory>
44+
4045
using namespace o2;
4146
using namespace o2::framework;
4247
using namespace o2::framework::expressions;

PWGDQ/Tasks/dqCorrelation.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
#include <cmath>
5151
#include <iostream>
5252
#include <vector>
53+
#include <memory>
54+
#include <string>
5355

5456
using std::cout;
5557
using std::endl;

PWGDQ/Tasks/muonDCA.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
#include "Framework/runDataProcessing.h"
2424
#include "GlobalTracking/MatchGlobalFwd.h"
2525

26+
#include <string>
27+
2628
using namespace o2;
2729
using namespace o2::framework;
2830
using namespace o2::aod;

PWGDQ/Tasks/taskFwdTrackPid.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
#include <iostream>
1717
#include <vector>
18+
#include <string>
19+
#include <memory>
1820
#include <algorithm>
1921
#include <TH1F.h>
2022
#include <TH3F.h>

0 commit comments

Comments
 (0)