Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:10:03

0001 // This file is part of the Acts project.
0002 //
0003 // Copyright (C) 2024 CERN for the benefit of the Acts project
0004 //
0005 // This Source Code Form is subject to the terms of the Mozilla Public
0006 // License, v. 2.0. If a copy of the MPL was not distributed with this
0007 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
0008 
0009 #pragma once
0010 
0011 #ifdef __CLING__
0012 
0013 // clang-format off
0014 
0015 #pragma link C++ class std::vector<std::vector<int>>+;
0016 #pragma link C++ class std::vector<std::vector<long>>+;
0017 
0018 #pragma link C++ class std::vector<std::vector<unsigned int>>+;
0019 #pragma link C++ class std::vector<std::vector<unsigned long>>+;
0020 
0021 #pragma link C++ class std::vector<std::vector<std::int32_t>>+;
0022 #pragma link C++ class std::vector<std::vector<std::int64_t>>+;
0023 
0024 #pragma link C++ class std::vector<std::vector<std::uint32_t>>+;
0025 #pragma link C++ class std::vector<std::vector<std::uint64_t>>+;
0026 
0027 #pragma link C++ class std::vector<std::vector<std::size_t>>+;
0028 
0029 #pragma link C++ class std::vector<std::vector<float>>+;
0030 #pragma link C++ class std::vector<std::vector<double>>+;
0031 
0032 // clang-format on
0033 
0034 #endif