Skip to content

Commit

Permalink
Please consider the following formatting changes (#7595)
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild authored Sep 6, 2024
1 parent 2735fc4 commit 1eb811e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -707,10 +707,10 @@ struct correlateStrangeness {
}

// Some QA plots
histos.add("hGeneratedQAPtTrigger", "hGeneratedQAPtTrigger", kTH2F, {axisPtQA, {5,-0.5f,4.5f}});
histos.add("hGeneratedQAPtAssociatedK0", "hGeneratedQAPtAssociatedK0", kTH2F, {axisPtQA, {5,-0.5f,4.5f}});
histos.add("hClosureQAPtTrigger", "hClosureQAPtTrigger", kTH2F, {axisPtQA, {5,-0.5f,4.5f}});
histos.add("hClosureQAPtAssociatedK0", "hClosureQAPtAssociatedK0", kTH2F, {axisPtQA, {5,-0.5f,4.5f}});
histos.add("hGeneratedQAPtTrigger", "hGeneratedQAPtTrigger", kTH2F, {axisPtQA, {5, -0.5f, 4.5f}});
histos.add("hGeneratedQAPtAssociatedK0", "hGeneratedQAPtAssociatedK0", kTH2F, {axisPtQA, {5, -0.5f, 4.5f}});
histos.add("hClosureQAPtTrigger", "hClosureQAPtTrigger", kTH2F, {axisPtQA, {5, -0.5f, 4.5f}});
histos.add("hClosureQAPtAssociatedK0", "hClosureQAPtAssociatedK0", kTH2F, {axisPtQA, {5, -0.5f, 4.5f}});

histos.add("hTrackEtaVsPtVsPhi", "hTrackEtaVsPtVsPhi", kTH3F, {axisPtQA, axisEta, axisPhi});
histos.add("hK0ShortEtaVsPtVsPhi", "hK0ShortEtaVsPtVsPhi", kTH3F, {axisPtQA, axisEta, axisPhi});
Expand Down Expand Up @@ -1181,7 +1181,7 @@ struct correlateStrangeness {

for (auto const& mcParticle : mcParticles) {
Double_t geta = mcParticle.eta();
if(std::abs(geta)>0.8f){
if (std::abs(geta) > 0.8f) {
continue;
}
Double_t gpt = mcParticle.pt();
Expand Down Expand Up @@ -1276,7 +1276,7 @@ struct correlateStrangeness {

for (auto const& mcParticle : mcParticles) {
Double_t geta = mcParticle.eta();
if(std::abs(geta)>0.8f){
if (std::abs(geta) > 0.8f) {
continue;
}
Double_t gpt = mcParticle.pt();
Expand Down Expand Up @@ -1354,7 +1354,7 @@ struct correlateStrangeness {

for (auto const& mcParticle : mcParticles) {
Double_t geta = mcParticle.eta();
if(std::abs(geta)>0.8f){
if (std::abs(geta) > 0.8f) {
continue;
}
Double_t gpt = mcParticle.pt();
Expand Down Expand Up @@ -1403,7 +1403,7 @@ struct correlateStrangeness {

for (auto const& mcParticle : mcParticles) {
Double_t geta = mcParticle.eta();
if(std::abs(geta)>0.8f){
if (std::abs(geta) > 0.8f) {
continue;
}
Double_t gpt = mcParticle.pt();
Expand Down

0 comments on commit 1eb811e

Please sign in to comment.