Skip to content

Commit 69b6120

Browse files
committed
fix format
1 parent d944986 commit 69b6120

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ struct LongRangeDihadronCor {
164164

165165
// FT0 geometry
166166
o2::ft0::Geometry ft0Det;
167-
static constexpr uint64_t ft0IndexA = 96;
167+
static constexpr uint64_t Ft0IndexA = 96;
168168
std::vector<o2::detectors::AlignParam>* offsetFT0;
169169
std::vector<float> cstFT0RelGain{};
170170

@@ -367,7 +367,7 @@ struct LongRangeDihadronCor {
367367
auto x = chPos.X() + (*offsetFT0)[i].getX();
368368
auto y = chPos.Y() + (*offsetFT0)[i].getY();
369369
auto z = chPos.Z() + (*offsetFT0)[i].getZ();
370-
if (chno >= ft0IndexA) {
370+
if (chno >= Ft0IndexA) {
371371
z = -z;
372372
}
373373
auto r = std::sqrt(x * x + y * y);
@@ -519,7 +519,7 @@ struct LongRangeDihadronCor {
519519
{
520520
if (fitType == kFT0C) {
521521
id = ft0.channelC()[iCh];
522-
id = id + ft0IndexA ;
522+
id = id + Ft0IndexA;
523523
ampl = ft0.amplitudeC()[iCh];
524524
registry.fill(HIST("FT0Amp"), id, ampl);
525525
ampl = ampl / cstFT0RelGain[iCh];

0 commit comments

Comments
 (0)