Skip to content

Commit 6c0aaa9

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 709c70e commit 6c0aaa9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pipeline/metadata/solarFlux/solarTests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
TVector3,
2626
)
2727

28-
2928
ROOT.gSystem.Load("libRestFramework.so")
3029
ROOT.gSystem.Load("libRestAxion.so")
3130

src/TRestAxionOpticsMirror.cxx

Lines changed: 2 additions & 2 deletions
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)