Skip to content

Commit d21b1a0

Browse files
committed
Implicitly already 0
1 parent bace063 commit d21b1a0

3 files changed

Lines changed: 2 additions & 10 deletions

File tree

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: ProFound
22
Type: Package
33
Title: Photometry Tools
4-
Version: 1.34.2
5-
Date: 2026-02-02
4+
Version: 1.34.3
5+
Date: 2026-02-22
66
Author: Aaron Robotham
77
Maintainer: Aaron Robotham <aaron.robotham@uwa.edu.au>
88
Description: Core package containing all the tools for simple and advanced source extraction. This is used to create inputs for 'ProFit', or for source detection, extraction and photometry in its own right.

src/aper_cover.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,7 @@ NumericVector profoundAperCover(NumericVector x,
7979
const double delta_2 = (delta_x * delta_x) + (delta_y * delta_y);
8080
result[i] = pixelCoverAper(delta_x, delta_y, delta_2,
8181
rad_2, rad_min_2, rad_max_2, depth);
82-
} else {
83-
result[i] = 0.0;
8482
}
85-
} else {
86-
result[i] = 0.0;
8783
}
8884
}
8985

src/ellip_cover.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,7 @@ NumericVector profoundEllipCover(NumericVector x, NumericVector y, double cx, do
8585
}else if(delta_2 < rad_plus * rad_plus){
8686
result[i] = pixelCoverEllip(delta_x, delta_y, x_term, y_term, xy_term, depth);
8787
}
88-
} else {
89-
result[i] = 0.0;
9088
}
91-
} else {
92-
result[i] = 0.0;
9389
}
9490
}
9591

0 commit comments

Comments
 (0)