ImpactX
nofinalize.H
Go to the documentation of this file.
1 /* Copyright 2022-2023 The Regents of the University of California, through Lawrence
2  * Berkeley National Laboratory (subject to receipt of any required
3  * approvals from the U.S. Dept. of Energy). All rights reserved.
4  *
5  * This file is part of ImpactX.
6  *
7  * Authors: Axel Huebl
8  * License: BSD-3-Clause-LBNL
9  */
10 #ifndef IMPACTX_ELEMENTS_MIXIN_NOFINALIZE_H
11 #define IMPACTX_ELEMENTS_MIXIN_NOFINALIZE_H
12 
13 
14 namespace impactx::elements
15 {
21  struct NoFinalize
22  {
25  void
27  {
28  // nothing to do
29  }
30  };
31 
32 } // namespace impactx::elements
33 
34 #endif // IMPACTX_ELEMENTS_MIXIN_NOFINALIZE_H
Definition: beamoptic.H:23
Definition: nofinalize.H:22
void finalize()
Definition: nofinalize.H:26