Skip to content

Commit 314f1d5

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 0213bb5 commit 314f1d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/TRestAxionOpticsMirror.cxx

+2-2
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ Double_t TRestAxionOpticsMirror::GetReflectivity(const Double_t angle, const Dou
397397
}
398398

399399
Int_t lowAngBin = (Int_t)((ang) / 0.01);
400-
Double_t deltaAng = (ang - (Double_t)(lowAngBin)*0.01) / 0.01; // between 0 and 1
400+
Double_t deltaAng = (ang - (Double_t)(lowAngBin) * 0.01) / 0.01; // between 0 and 1
401401

402402
Double_t REnLowAngLow = fReflectivityTable[lowEnBin][lowAngBin];
403403
Double_t REnLowAngHi = fReflectivityTable[lowEnBin][lowAngBin + 1];
@@ -449,7 +449,7 @@ Double_t TRestAxionOpticsMirror::GetTransmission(const Double_t angle, const Dou
449449
}
450450

451451
Int_t lowAngBin = (Int_t)((ang) / 0.01);
452-
Double_t deltaAng = (ang - (Double_t)(lowAngBin)*0.01) / 0.01; // between 0 and 1
452+
Double_t deltaAng = (ang - (Double_t)(lowAngBin) * 0.01) / 0.01; // between 0 and 1
453453

454454
Double_t REnLowAngLow = fTransmissionTable[lowEnBin][lowAngBin];
455455
Double_t REnLowAngHi = fTransmissionTable[lowEnBin][lowAngBin + 1];

0 commit comments

Comments
 (0)