Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:01:12

0001 // -*- C++ -*-
0002 //
0003 // This file is part of HepMC
0004 // Copyright (C) 2014-2023 The HepMC collaboration (see AUTHORS for details)
0005 //
0006 ///
0007 /// @file GenHeavyIon_fwd.h
0008 /// @brief Minimal forward declarations for GenHeavyIon
0009 ///
0010 
0011 #ifndef HEPMC3_GENHEAVYION_FWD_H
0012 #define HEPMC3_GENHEAVYION_FWD_H
0013 
0014 #include <memory>
0015 
0016 namespace HepMC3 {
0017 
0018 class GenHeavyIon;
0019 
0020 using GenHeavyIonPtr = std::shared_ptr<GenHeavyIon>;
0021 using ConstGenHeavyIonPtr = std::shared_ptr<const GenHeavyIon>;
0022 
0023 }
0024 
0025 #endif