From ea2ffa136be038f78b4afc02482f5ec9fe3a65d8 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 10 Jun 2024 20:33:42 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/TRestAxionOpticsMirror.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TRestAxionOpticsMirror.cxx b/src/TRestAxionOpticsMirror.cxx index 2ca01c51..ee17be1a 100644 --- a/src/TRestAxionOpticsMirror.cxx +++ b/src/TRestAxionOpticsMirror.cxx @@ -397,7 +397,7 @@ Double_t TRestAxionOpticsMirror::GetReflectivity(const Double_t angle, const Dou } Int_t lowAngBin = (Int_t)((ang) / 0.01); - Double_t deltaAng = (ang - (Double_t)(lowAngBin)*0.01) / 0.01; // between 0 and 1 + Double_t deltaAng = (ang - (Double_t)(lowAngBin) * 0.01) / 0.01; // between 0 and 1 Double_t REnLowAngLow = fReflectivityTable[lowEnBin][lowAngBin]; Double_t REnLowAngHi = fReflectivityTable[lowEnBin][lowAngBin + 1]; @@ -449,7 +449,7 @@ Double_t TRestAxionOpticsMirror::GetTransmission(const Double_t angle, const Dou } Int_t lowAngBin = (Int_t)((ang) / 0.01); - Double_t deltaAng = (ang - (Double_t)(lowAngBin)*0.01) / 0.01; // between 0 and 1 + Double_t deltaAng = (ang - (Double_t)(lowAngBin) * 0.01) / 0.01; // between 0 and 1 Double_t REnLowAngLow = fTransmissionTable[lowEnBin][lowAngBin]; Double_t REnLowAngHi = fTransmissionTable[lowEnBin][lowAngBin + 1];