From aaf47bd72fff33745a930fc54a3f0ec46f0940e2 Mon Sep 17 00:00:00 2001 From: Felix Schlepper Date: Fri, 24 Nov 2023 21:25:41 +0100 Subject: [PATCH] remove seg --- Detectors/Upgrades/ITS3/base/CMakeLists.txt | 1 - .../ITS3/base/src/SegmentationSuperAlpide.cxx | 26 ------------------- 2 files changed, 27 deletions(-) delete mode 100644 Detectors/Upgrades/ITS3/base/src/SegmentationSuperAlpide.cxx diff --git a/Detectors/Upgrades/ITS3/base/CMakeLists.txt b/Detectors/Upgrades/ITS3/base/CMakeLists.txt index ecae32701809c..1843279216345 100644 --- a/Detectors/Upgrades/ITS3/base/CMakeLists.txt +++ b/Detectors/Upgrades/ITS3/base/CMakeLists.txt @@ -11,7 +11,6 @@ o2_add_library(ITS3Base SOURCES src/MisalignmentParameter.cxx - src/SegmentationSuperAlpide.cxx PUBLIC_LINK_LIBRARIES O2::CommonConstants O2::MathUtils O2::DetectorsBase) o2_target_root_dictionary(ITS3Base diff --git a/Detectors/Upgrades/ITS3/base/src/SegmentationSuperAlpide.cxx b/Detectors/Upgrades/ITS3/base/src/SegmentationSuperAlpide.cxx deleted file mode 100644 index 8245d4c205d14..0000000000000 --- a/Detectors/Upgrades/ITS3/base/src/SegmentationSuperAlpide.cxx +++ /dev/null @@ -1,26 +0,0 @@ -// 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 -// or submit itself to any jurisdiction. - -/// \file SegmentationSuperAlpide.cxx -/// \brief Implementation of the SegmentationSuperAlpide class - -#include "ITS3Base/SegmentationSuperAlpide.h" -#include - -ClassImp(o2::its3::SegmentationSuperAlpide); - -void o2::its3::SegmentationSuperAlpide::print() -{ - LOGP(debug, "SegmentationSuperAlpide:"); - LOGP(debug, "Layer {}: Active/Total size {:.2f}/{:.2f} (rows) x {:.2f}/{:.2f}", mLayer, mActiveMatrixSizeRows, mSensorSizeRows, mActiveMatrixSizeCols, mSensorSizeCols); - LOGP(debug, "Pixel size: {:.2f} (along {} rows) {:.2f} (along {} columns) microns", mPitchRow * 1e4, mNRows, mPitchCol * 1e4, mNCols); - LOGP(debug, "Passive edges: bottom: {:.6f}, top: {:.6f}, left/right: {:.6f} microns", mPassiveEdgeReadOut * 1e4, mPassiveEdgeTop * 1e4, mPassiveEdgeSide * 1e4); -}