Skip to content

Commit af22b7a

Browse files
committed
resolving o2 linter issues
1 parent e62c3c7 commit af22b7a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

PWGCF/TwoParticleCorrelations/Tasks/twoParticleCorrelationPp.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
/// \file twoParticleCorrelationpp.cxx
12+
/// \file twoParticleCorrelationPp.cxx
1313
/// \brief Task for two particle correlation in pp in order to calculate a baseline in a template fit for the flow coefficients
1414
/// \author Josué Martínez García <josuem@cern.ch>
1515

@@ -37,7 +37,7 @@ using namespace o2::framework::expressions;
3737
static constexpr float cfgPairCutDefaults[1][5] = {{-1, -1, -1, -1, -1}};
3838
constexpr float kThreeHalfPi = 1.5f * PI;
3939

40-
struct TwoParticleCorrelationpp {
40+
struct TwoParticleCorrelationPp {
4141

4242
// Declare configurables on events/collisions
4343
Configurable<int> minMultiplicity{"minMultiplicity", 2, {"Range on multiplicity"}};
@@ -386,7 +386,7 @@ struct TwoParticleCorrelationpp {
386386
}
387387
}
388388

389-
PROCESS_SWITCH(TwoParticleCorrelationpp, processMixed, "Process mixed events", true);
389+
PROCESS_SWITCH(TwoParticleCorrelationPp, processMixed, "Process mixed events", true);
390390

391391
void processSame(FullCollisions::iterator const& collision, FullTracks const& tracks)
392392
{
@@ -411,7 +411,7 @@ struct TwoParticleCorrelationpp {
411411
fillCorrelations(same, tracks, tracks, multiplicity, collision.posZ(), SameEventTag{});
412412
}
413413

414-
PROCESS_SWITCH(TwoParticleCorrelationpp, processSame, "Process same events", true);
414+
PROCESS_SWITCH(TwoParticleCorrelationPp, processSame, "Process same events", true);
415415

416416
void process(FullCollisions::iterator const& collision, FullTracks const& tracks)
417417
{
@@ -563,12 +563,12 @@ struct TwoParticleCorrelationpp {
563563
}
564564
}
565565

566-
PROCESS_SWITCH(TwoParticleCorrelationpp, process, "Process mixed events", true);
566+
PROCESS_SWITCH(TwoParticleCorrelationPp, process, "Process mixed events", true);
567567
};
568568

569569
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
570570
{
571571
return WorkflowSpec{
572-
adaptAnalysisTask<TwoParticleCorrelationpp>(cfgc, "two-particle-correlation-pp"),
572+
adaptAnalysisTask<TwoParticleCorrelationPp>(cfgc),
573573
};
574574
}

0 commit comments

Comments
 (0)