1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#ifndef HEPMC3_WRITERHEPEVTZEUS_H
#define HEPMC3_WRITERHEPEVTZEUS_H
///
/// @file WriterHEPEVTZEUS.h
/// @brief Definition of class \b WriterHEPEVTZEUS
///
/// @class HepMC3::WriterHEPEVTZEUS
/// @brief GenEvent I/O output to files readable by ZEUS software
///
/// @ingroup Examples
///
#include "HepMC3/WriterHEPEVT.h"
#include "HepMC3/GenEvent.h"
#include "HepMC3/GenParticle.h"
#include "HepMC3/Data/GenEventData.h"
namespace HepMC3
{
class WriterHEPEVTZEUS : public WriterHEPEVT
{
public:
/** @brief Constructor */
WriterHEPEVTZEUS(const std::string &filename);
/** @brief Write the header */
void write_hepevt_event_header();
/** @brief Write particles */
void write_hepevt_particle( int index, bool iflong );
};
}
#endif
|