Skip to content

Commit 5c590eb

Browse files
authored
ITS: TrackExtensionStudy (#13568)
* ITS: Tracker add constexpr Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch> * ITS: TrackExtension fix dangling reference on vector reallocation Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch> * ITS: TrackExtensionStudy add missed/empty cluster patterns Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch> * ITS: TrackExtensionStudy require MC Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch> * ITS: TrackExtensionStudy Efficiencies Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch> * ITS: TrackerTraits getBinsRect mark as const Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch> * ITS: TrackerTraits mark getEmptyBinsRect as consteval Avoid invalid read on first call. Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch> * ITS: TrackerTraits move function for readability Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch> * ITS: TrackExtensionStudy more plots * ITS: TrackerTraits: getBinsRect check layer requested * ITS: TrackExtension allow steering of cuts&directions * ITS: TrackExtension switch to fmt for macos --------- Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch>
1 parent 4f7d71b commit 5c590eb

File tree

13 files changed

+988
-145
lines changed

13 files changed

+988
-145
lines changed

Detectors/ITSMFT/ITS/postprocessing/studies/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,6 @@ o2_target_root_dictionary(ITSPostprocessing
3030
HEADERS include/ITSStudies/ITSStudiesConfigParam.h
3131
include/ITSStudies/TrackCuts.h
3232
include/ITSStudies/TrackMethods.h
33-
LINKDEF src/ITSStudiesLinkDef.h)
33+
LINKDEF src/ITSStudiesLinkDef.h)
34+
35+
add_subdirectory(macros)

Detectors/ITSMFT/ITS/postprocessing/studies/include/ITSStudies/TrackExtension.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class MCKinematicsReader;
2424
namespace its::study
2525
{
2626
using mask_t = o2::dataformats::GlobalTrackID::mask_t;
27-
o2::framework::DataProcessorSpec getTrackExtensionStudy(mask_t srcTracksMask, mask_t srcClustersMask, bool useMC, std::shared_ptr<o2::steer::MCKinematicsReader> kineReader);
27+
o2::framework::DataProcessorSpec getTrackExtensionStudy(mask_t srcTracksMask, mask_t srcClustersMask, std::shared_ptr<o2::steer::MCKinematicsReader> kineReader);
2828
} // namespace its::study
2929

3030
} // namespace o2
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2+
# See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3+
# All rights not expressly granted are reserved.
4+
#
5+
# This software is distributed under the terms of the GNU General Public
6+
# License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7+
#
8+
# In applying this license CERN does not waive the privileges and immunities
9+
# granted to it by virtue of its status as an Intergovernmental Organization
10+
# or submit itself to any jurisdiction.
11+
12+
# o2_add_test_root_macro(
13+
# PostTrackExtension.C
14+
# PUBLIC_LINK_LIBRARIES ROOT::Hist ROOT::RIO ROOT::Core ROOT::Gpad
15+
# LABELS its-study
16+
# COMPILE_ONLY)

0 commit comments

Comments
 (0)