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];