Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:12:00

0001 // This file is part of the ACTS project.
0002 //
0003 // Copyright (C) 2016 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 https://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 #pragma link C++ class std::vector<std::vector<bool>>+;
0032 
0033 // clang-format on
0034 
0035 #endif