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
2 changes: 1 addition & 1 deletion PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
AxisSpec antiprotonAxis = {21, -0.5, 20.5, "antiproton number"};

auto noSubsample = (int)cfgNSubsample;
float maxSubsample = 1.0*noSubsample;
float maxSubsample = 1.0 * noSubsample;
AxisSpec subsampleAxis = {noSubsample, 0.0, maxSubsample, "subsample no."};

// histograms for events
Expand Down Expand Up @@ -1141,17 +1141,17 @@

//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

float fQ11_1 = fTCP1[1];

Check warning on line 1144 in PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
float fQ11_2 = std::pow(fTCP1[1], 2);

Check warning on line 1145 in PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
float fQ11_3 = std::pow(fTCP1[1], 3);

Check warning on line 1146 in PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
float fQ11_4 = std::pow(fTCP1[1], 4);

Check warning on line 1147 in PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
float fQ11_5 = std::pow(fTCP1[1], 5);

Check warning on line 1148 in PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
float fQ11_6 = std::pow(fTCP1[1], 6);

Check warning on line 1149 in PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.

float fQ21_3 = std::pow(fTCP0[1], 3);

Check warning on line 1151 in PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
float fQ22_3 = std::pow(fTCP0[2], 3);

Check warning on line 1152 in PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
float fQ31_2 = std::pow(fTCP1[1], 2);

Check warning on line 1153 in PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
float fQ32_2 = std::pow(fTCP1[2], 2);

Check warning on line 1154 in PWGCF/EbyEFluctuations/Tasks/netprotonCumulantsMc.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.
float fQ33_2 = std::pow(fTCP1[3], 2);

float fQ61_1 = fTCP0[1];
Expand Down
Loading