Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Sep 25, 2023
1 parent 021bb40 commit 42be607
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Common/DataModel/Multiplicity.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ using MultZeq = MultZeqs::iterator;

namespace multDebug
{
DECLARE_SOA_COLUMN(MultDebugFT0A, multDebugFT0A, float); //!
DECLARE_SOA_COLUMN(MultDebugFT0C, multDebugFT0C, float); //!
DECLARE_SOA_COLUMN(MultDebugFT0A, multDebugFT0A, float); //!
DECLARE_SOA_COLUMN(MultDebugFT0C, multDebugFT0C, float); //!
} // namespace multDebug
DECLARE_SOA_TABLE(MultsDebug, "AOD", "MULTDEBUG", //!
multDebug::MultDebugFT0A,
Expand Down
4 changes: 2 additions & 2 deletions Common/TableProducer/multiplicityTable.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ struct MultiplicityTableTaskIndexed {
{
// process function to acquire FT0A/C derived table for posterior study
for (auto const& ft0 : ft0s) {
if(bitcheck(ft0.triggerMask(), 4)){
if (bitcheck(ft0.triggerMask(), 4)) {
float multFT0A = 0, multFT0C = 0;
for (auto amplitude : ft0.amplitudeA()) {
multFT0A += amplitude;
Expand All @@ -334,7 +334,7 @@ struct MultiplicityTableTaskIndexed {
multFT0C += amplitude;
}

multDebug( multFT0A, multFT0C );
multDebug(multFT0A, multFT0C);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion Common/Tasks/multiplicityQa.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ struct MultiplicityQa {
// Contributors correlation
histos.add("h2dNContribCorrAll", "h2dNContribCorrAll", kTH2D, {axisContributors, axisContributors});

if (doprocessFIT){
if (doprocessFIT) {
histos.add("multiplicityQa/hIsolatedFT0A", "isolated FT0A", kTH1D, {axisMultFT0});
histos.add("multiplicityQa/hIsolatedFT0C", "isolated FT0C", kTH1D, {axisMultFT0});
histos.add("multiplicityQa/hIsolatedFT0M", "isolated FT0M", kTH1D, {axisMultFT0});
Expand Down

0 comments on commit 42be607

Please sign in to comment.