Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.

Check warning on line 1 in PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Provide mandatory file documentation.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
Expand All @@ -8,7 +8,7 @@
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.

Check warning on line 11 in PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Documentation for \file is missing, incorrect or misplaced.

Check warning on line 11 in PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Documentation for \brief is missing, incorrect or misplaced.

Check warning on line 11 in PWGCF/JCorran/Core/FlowJSPCAnalysis.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Documentation for \author is missing, incorrect or misplaced.
// Header files.

// O2 headers.
Expand Down Expand Up @@ -332,7 +332,7 @@
} break;
case 8: {
int harmonicsEightNum[8] = {harmo[0], harmo[1], harmo[2], harmo[3],
harmo[4], harmo[5], harmo[6], harmo[7]};
harmo[4], harmo[5], harmo[6], harmo[7]};
int harmonicsEightDen[8] = {0, 0, 0, 0, 0, 0, 0, 0};

if (!fCorrelDenoms[7]) {
Expand All @@ -347,7 +347,7 @@
} break;
case 9: {
int harmonicsNineNum[9] = {harmo[0], harmo[1], harmo[2], harmo[3], harmo[4],
harmo[5], harmo[6], harmo[7], harmo[8]};
harmo[5], harmo[6], harmo[7], harmo[8]};
int harmonicsNineDen[9] = {0, 0, 0, 0, 0, 0, 0, 0, 0};

if (!fCorrelDenoms[8]) {
Expand All @@ -362,7 +362,7 @@
} break;
case 10: {
int harmonicsTenNum[10] = {harmo[0], harmo[1], harmo[2], harmo[3], harmo[4],
harmo[5], harmo[6], harmo[7], harmo[8], harmo[9]};
harmo[5], harmo[6], harmo[7], harmo[8], harmo[9]};
int harmonicsTenDen[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};

if (!fCorrelDenoms[9]) {
Expand All @@ -377,7 +377,7 @@
} break;
case 12: {
int harmonicsTwelveNum[12] = {harmo[0], harmo[1], harmo[2], harmo[3], harmo[4], harmo[5],
harmo[6], harmo[7], harmo[8], harmo[9], harmo[10], harmo[11]};
harmo[6], harmo[7], harmo[8], harmo[9], harmo[10], harmo[11]};
int harmonicsTwelveDen[12] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};

if (!fCorrelDenoms[11]) {
Expand All @@ -392,7 +392,7 @@
} break;
case 14: {
int harmonicsFourteenNum[14] = {harmo[0], harmo[1], harmo[2], harmo[3], harmo[4], harmo[5], harmo[6],
harmo[7], harmo[8], harmo[9], harmo[10], harmo[11], harmo[12], harmo[13]};
harmo[7], harmo[8], harmo[9], harmo[10], harmo[11], harmo[12], harmo[13]};
int harmonicsFourteenDen[14] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};

if (!fCorrelDenoms[13]) {
Expand Down
1 change: 0 additions & 1 deletion PWGCF/JCorran/Core/FlowJSPCAnalysis.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.

Check warning on line 1 in PWGCF/JCorran/Core/FlowJSPCAnalysis.h

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Provide mandatory file documentation.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
Expand All @@ -8,7 +8,7 @@
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.

Check warning on line 11 in PWGCF/JCorran/Core/FlowJSPCAnalysis.h

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Documentation for \file is missing, incorrect or misplaced.

Check warning on line 11 in PWGCF/JCorran/Core/FlowJSPCAnalysis.h

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Documentation for \brief is missing, incorrect or misplaced.

Check warning on line 11 in PWGCF/JCorran/Core/FlowJSPCAnalysis.h

View workflow job for this annotation

GitHub Actions / O2 linter

[doc/file]

Documentation for \author is missing, incorrect or misplaced.
// \brief Calculation class for the SPC-related analyses.
// \author Maxim Virta (maxim.virta@cern.fi), Cindy Mordasini (cindy.mordasini@cern.ch)

Expand All @@ -26,7 +26,6 @@
#include "PWGCF/JCorran/Core/JQVectors.h"
#include "CommonConstants/MathConstants.h"


class FlowJSPCAnalysis
{
public:
Expand Down
Loading