Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-09-28 07:02:55

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>
0009   struct SubDivideCollectionConfig {
0010     std::function<std::vector<int>(const T&)> function;
0011   };
0012 
0013 } // eicrecon