Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ class SegmentationChip
static constexpr math_utils::Vector2D<float> flatToCurved(int layer, float xFlat, float yFlat) noexcept
{
// Revert the curvedToFlat transformation
float dist = constants::VD::petal::layer::radii[layer] - yFlat;
float dist = constants::VD::petal::layer::radii[layer] - yFlat;
float phi = xFlat / constants::VD::petal::layer::radii[layer];
// the y position is in the chip volume however we need the silicon volume
// this is accounted by a -y shift
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@

// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
// This software is distributed under the terms of the GNU General Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization

Check failure on line 10 in Detectors/Upgrades/ALICE3/TRK/simulation/src/DigiParams.cxx

View workflow job for this annotation

GitHub Actions / PR formatting / copyright headers

Missing or malformed copyright notice

This source file is missing the correct copyright notice.
// or submit itself to any jurisdiction.

/// \file DigiParams.cxx
Expand All @@ -17,7 +17,6 @@
#include "TRKSimulation/DigiParams.h"
#include <cassert>


using namespace o2::trk;

DigiParams::DigiParams()
Expand Down
2 changes: 1 addition & 1 deletion Detectors/Upgrades/ALICE3/TRK/simulation/src/Digitizer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ void Digitizer::processHit(const o2::itsmft::Hit& hit, uint32_t& maxFr, int evID
static int warnNo = 0;
if (warnNo < maxWarn) {
LOG(warning) << "Ignoring hit with time_in_event = " << timeInROF << " ns"
<< ((++warnNo < maxWarn) ? "" : " (suppressing further warnings)");
<< ((++warnNo < maxWarn) ? "" : " (suppressing further warnings)");
}
return;
}
Expand Down
Loading