Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PWGJE/Tasks/jetShape.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ struct JetShapeTask {
template <typename T, typename U>
bool isAcceptedJet(U const& jet)
{
static constexpr double kJetAreaFractonMinValue = -98.0
if (jetAreaFractionMin > kJetAreaFractonMinValue) {
static constexpr double kJetAreaFractonMinValue = -98.0 if (jetAreaFractionMin > kJetAreaFractonMinValue)
{
if (jet.area() < jetAreaFractionMin * o2::constants::math::PI * (jet.r() / 100.0) * (jet.r() / 100.0)) {
return false;
}
Expand Down