Skip to content

Commit 0d88e35

Browse files
committed
fix includes
1 parent be47059 commit 0d88e35

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

PWGCF/GenericFramework/Tasks/flowGfwNonflow.cxx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,22 +51,17 @@
5151
#include <TRandom3.h>
5252
#include <TString.h>
5353

54-
#include <algorithm>
5554
#include <array>
5655
#include <chrono>
5756
#include <cmath>
5857
#include <complex>
5958
#include <cstddef>
6059
#include <cstdint>
6160
#include <cstdlib>
62-
#include <iomanip>
63-
#include <ios>
6461
#include <map>
6562
#include <memory>
66-
#include <sstream>
6763
#include <string>
6864
#include <string_view>
69-
#include <type_traits>
7065
#include <utility>
7166
#include <vector>
7267

@@ -750,7 +745,7 @@ struct FlowGfwNonflow {
750745
fFCpt->fillCMProfiles(centmult, rndm);
751746
fFCpt->fillCMSubeventProfiles(centmult, rndm);
752747

753-
for (uint l_ind = 0; l_ind < corrconfigs.size(); ++l_ind) {
748+
for (std::size_t l_ind = 0; l_ind < corrconfigs.size(); ++l_ind) {
754749
if (!corrconfigs.at(l_ind).pTDif) {
755750
auto dnx = fGFW->Calculate(corrconfigs.at(l_ind), 0, true).real();
756751
if (dnx == 0) {

0 commit comments

Comments
 (0)