Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-22 09:33:49

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 #include "Acts/Geometry/VolumeResizeStrategy.hpp"
0010 
0011 namespace Acts {
0012 
0013 std::ostream& operator<<(std::ostream& os, VolumeResizeStrategy strategy) {
0014   switch (strategy) {
0015     case VolumeResizeStrategy::Expand:
0016       os << "Expand";
0017       break;
0018     case VolumeResizeStrategy::Gap:
0019       os << "Gap";
0020       break;
0021     default:
0022       os << "Unknown";
0023       break;
0024   }
0025   return os;
0026 }
0027 
0028 }  // namespace Acts