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 Jul 12, 2024
1 parent 7f32257 commit a083d70
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class DigitizationContext

void setMuPerBC(float m) { mMuBC = m; }
float getMuPerBC() const { return mMuBC; }

/// returns the main (hadronic interaction rate) associated to this digitization context
float getCalculatedInteractionRate() const { return getMuPerBC() * getBunchFilling().getNBunches() * o2::constants::lhc::LHCRevFreq; }

Expand Down Expand Up @@ -154,7 +154,7 @@ class DigitizationContext
}

void setDigitizerInteractionRate(float intRate) { mDigitizerInteractionRate = intRate; }
float getDigitizerInteractionRate() const { return mDigitizerInteractionRate; }
float getDigitizerInteractionRate() const { return mDigitizerInteractionRate; }

std::vector<o2::ctp::CTPDigit> const* getCTPDigits() const { return mCTPTrigger; }
bool hasTriggerInput() const { return mHasTrigger; }
Expand Down Expand Up @@ -195,7 +195,7 @@ class DigitizationContext
// The value will be filled/inserted by the digitization workflow so that digiters can access it.
// There is no guarantee that the value is available elsewhere.
float mDigitizerInteractionRate{-1};

ClassDefNV(DigitizationContext, 6);
};

Expand Down

0 comments on commit a083d70

Please sign in to comment.