Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-08-16 08:16:23

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 /// @file fixture header for the API-surface self-test (base revision)
0012 
0013 namespace Acts {
0014 
0015 /// A demo type.
0016 struct Demo {
0017   /// A tolerance.
0018   double tolerance = 0.0;
0019   /// A label.
0020   int label = 0;
0021 
0022   /// Do a thing.
0023   /// @param x the x
0024   void doThing(int x);
0025 
0026   /// A function that will be removed.
0027   /// @param a the a
0028   void oldFn(double a);
0029 };
0030 
0031 /// A free function.
0032 /// @param n a number
0033 int compute(int n);
0034 
0035 }  // namespace Acts