Newer
Older
Markus Frank
committed
//==========================================================================
Markus Frank
committed
//--------------------------------------------------------------------------
// Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
Markus Frank
committed
// All rights reserved.
Markus Frank
committed
// For the licensing terms see $DD4hepINSTALL/LICENSE.
// For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
//
// Author : M.Frank
//
//==========================================================================
#ifndef DDG4_LCIO_LCIOEVENTREADER_H
#define DDG4_LCIO_LCIOEVENTREADER_H
// Framework include files
#include "DDG4/Geant4InputAction.h"
// Forward declarations
namespace EVENT { class LCCollection; }
/// Namespace for the AIDA detector description toolkit
/// Namespace for the Geant4 based simulation part of the AIDA detector description toolkit
Markus Frank
committed
/**
* \author P.Kostka (main author)
* \author M.Frank (code reshuffeling into new DDG4 scheme)
* \version 1.0
* \ingroup DD4HEP_SIMULATION
class LCIOEventReader : public Geant4EventReader {
public:
/// Initializing constructor
LCIOEventReader(const std::string& nam);
/// Default destructor
virtual ~LCIOEventReader();
/// Read an event and fill a vector of MCParticles.
virtual EventReaderStatus readParticles(int event_number,
std::vector<Particle*>& particles);
/// Read an event and return a LCCollectionVec of MCParticles.
Markus Frank
committed
virtual EventReaderStatus readParticleCollection(int event_number, EVENT::LCCollection** particles) = 0;
} /* End namespace sim */
} /* End namespace dd4hep */