We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b16049 commit f3f16f4Copy full SHA for f3f16f4
PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx
@@ -164,6 +164,7 @@ struct LongRangeDihadronCor {
164
165
// FT0 geometry
166
o2::ft0::Geometry ft0Det;
167
+ const uint64_t ft0IndexA = 96;
168
std::vector<o2::detectors::AlignParam>* offsetFT0;
169
std::vector<float> cstFT0RelGain{};
170
@@ -367,6 +368,9 @@ struct LongRangeDihadronCor {
367
368
auto x = chPos.X() + (*offsetFT0)[i].getX();
369
auto y = chPos.Y() + (*offsetFT0)[i].getY();
370
auto z = chPos.Z() + (*offsetFT0)[i].getZ();
371
+ if (chno >= ft0IndexA) {
372
+ z = -z;
373
+ }
374
auto r = std::sqrt(x * x + y * y);
375
auto theta = std::atan2(r, z);
376
return -std::log(std::tan(0.5 * theta));
0 commit comments