MARLEY (Model of Argon Reaction Low Energy Yields) v2.0.0
A Monte Carlo event generator for tens-of-MeV neutrino interactions
Loading...
Searching...
No Matches
GenCrossSection_fwd.h
1// -*- C++ -*-
2//
3// This file is part of HepMC
4// Copyright (C) 2014-2023 The HepMC collaboration (see AUTHORS for details)
5//
10
11#ifndef HEPMC3_GENCROSSSECTION_FWD_H
12#define HEPMC3_GENCROSSSECTION_FWD_H
13
14#include <memory>
15
16namespace HepMC3 {
17
18class GenCrossSection;
19
20using GenCrossSectionPtr = std::shared_ptr<GenCrossSection>;
21using ConstGenCrossSectionPtr = std::shared_ptr<const GenCrossSection>;
22
23}
24
25#endif
Stores additional information about cross-section.