Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-18 09:24:52

0001 //------------------------------- -*- C++ -*- -------------------------------//
0002 // Copyright Celeritas contributors: see top-level COPYRIGHT file for details
0003 // SPDX-License-Identifier: (Apache-2.0 OR MIT)
0004 //---------------------------------------------------------------------------//
0005 //! \file orange/transform/TransformIO.hh
0006 //---------------------------------------------------------------------------//
0007 #pragma once
0008 
0009 #include <iosfwd>
0010 
0011 #include "TransformTypeTraits.hh"
0012 
0013 namespace celeritas
0014 {
0015 //---------------------------------------------------------------------------//
0016 //!@{
0017 //! Print transforms to a stream.
0018 
0019 std::ostream& operator<<(std::ostream&, NoTransformation const&);
0020 std::ostream& operator<<(std::ostream&, Translation const&);
0021 std::ostream& operator<<(std::ostream&, Transformation const&);
0022 
0023 //!@}
0024 //---------------------------------------------------------------------------//
0025 }  // namespace celeritas