Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@

// FT0 geometry
o2::ft0::Geometry ft0Det;
static constexpr uint64_t ft0IndexA = 96;

Check failure on line 167 in PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/constexpr-constant]

Use UpperCamelCase for names of constexpr constants. Names of special constants may be prefixed with "k".
std::vector<o2::detectors::AlignParam>* offsetFT0;
std::vector<float> cstFT0RelGain{};

Expand Down Expand Up @@ -519,7 +519,7 @@
{
if (fitType == kFT0C) {
id = ft0.channelC()[iCh];
id = id + ft0IndexA ;
id = id + ft0IndexA;
ampl = ft0.amplitudeC()[iCh];
registry.fill(HIST("FT0Amp"), id, ampl);
ampl = ampl / cstFT0RelGain[iCh];
Expand Down
Loading