Skip to content

Commit ddcaeb9

Browse files
author
Mikhail Polkovnikov
committed
STYLE: Fix code formatting7
1 parent 80594b2 commit ddcaeb9

3 files changed

Lines changed: 3 additions & 5 deletions

include/rtkJosephForwardAttenuatedProjectionImageFilter.hxx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ JosephForwardAttenuatedProjectionImageFilter<TInputImage, TOutputImage>::JosephF
9696
const VectorType & itkNotUsed(source),
9797
const VectorType & itkNotUsed(sourceToPixel),
9898
const VectorType & itkNotUsed(nearestPoint),
99-
const VectorType & itkNotUsed(farthestPoint))
100-
{
99+
const VectorType & itkNotUsed(farthestPoint)) {
101100
output = input + rayCastValue;
102101
this->m_AttenuationRay[threadId] = 0;
103102
this->m_Ex1[threadId] = 1;

include/rtkJosephForwardProjectionImageFilter.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ JosephForwardProjectionImageFilter<TInputImage, TOutputImage>::JosephForwardProj
4141
int i) -> OutputPixelType { return weight * p[i]; };
4242

4343
this->m_SumAlongRay =
44-
[](const ThreadIdType, OutputPixelType &sumValue, const InputPixelType volumeValue, const VectorType &) {
44+
[](const ThreadIdType, OutputPixelType & sumValue, const InputPixelType volumeValue, const VectorType &) {
4545
sumValue += static_cast<OutputPixelType>(volumeValue);
4646
};
4747

include/rtkMaximumIntensityProjectionImageFilter.hxx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ namespace rtk
2424

2525
template <class TInputImage, class TOutputImage>
2626
MaximumIntensityProjectionImageFilter<TInputImage, TOutputImage>::MaximumIntensityProjectionImageFilter()
27-
:
28-
JosephForwardProjectionImageFilter<TInputImage, TOutputImage>()
27+
: JosephForwardProjectionImageFilter<TInputImage, TOutputImage>()
2928
{
3029
auto sumAlongRayFunc =
3130
[](const ThreadIdType, OutputPixelType & mipValue, const InputPixelType volumeValue, const VectorType &) {

0 commit comments

Comments
 (0)