Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-08-01 09:04:34

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2024 Simon Gardner
0003 
0004 #pragma once
0005 
0006 namespace eicrecon {
0007 
0008 template <class T> struct SubDivideCollectionConfig {
0009   std::function<std::vector<int>(const T&)> function;
0010 };
0011 
0012 } // namespace eicrecon