Skip to content
Snippets Groups Projects
LCIOFileReader.cpp 3.36 KiB
Newer Older
Markus Frank's avatar
Markus Frank committed
// $Id: $
//==========================================================================
Markus Frank's avatar
Markus Frank committed
//  AIDA Detector description implementation for LCD
//--------------------------------------------------------------------------
Markus Frank's avatar
Markus Frank committed
// Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
Markus Frank's avatar
Markus Frank committed
//
// For the licensing terms see $DD4hepINSTALL/LICENSE.
// For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
//
// Author     : M.Frank
//
//==========================================================================
#ifndef DD4HEP_DDG4_LCIOFILEREADER_H
#define DD4HEP_DDG4_LCIOFILEREADER_H
Markus Frank's avatar
Markus Frank committed

// Framework include files
#include "lcio.h"

using namespace lcio ;
Markus Frank's avatar
Markus Frank committed

// Forward declarations
namespace IO { class LCReader; }

/// Namespace for the AIDA detector description toolkit
namespace DD4hep  {
Markus Frank's avatar
Markus Frank committed

  /// Namespace for the Geant4 based simulation part of the AIDA detector description toolkit
  namespace Simulation  {

    /// Base class to read lcio event files
    /**
     *  \author  P.Kostka (main author)
     *  \author  M.Frank  (code reshuffeling into new DDG4 scheme)
     *  \version 1.0
     *  \ingroup DD4HEP_SIMULATION
Markus Frank's avatar
Markus Frank committed
     */
    class LCIOFileReader : public LCIOEventReader  {
Markus Frank's avatar
Markus Frank committed
    protected:
      /// Reference to reader object
      IO::LCReader* m_reader;
Markus Frank's avatar
Markus Frank committed
    public:
      /// Initializing constructor
      LCIOFileReader(const std::string& nam);
Markus Frank's avatar
Markus Frank committed
      /// Default destructor
      /// Read an event and fill a vector of MCParticles.
      virtual EventReaderStatus readParticleCollection(int event_number, EVENT::LCCollection** particles);
Markus Frank's avatar
Markus Frank committed
    };
  }
}
#endif // DD4HEP_DDG4_LCIOFILEREADER_H
Markus Frank's avatar
Markus Frank committed

#include "DD4hep/Printout.h"
#include "DDG4/Factories.h"
#include "UTIL/ILDConf.h"
Markus Frank's avatar
Markus Frank committed

using namespace DD4hep::Simulation;
Markus Frank's avatar
Markus Frank committed

// Factory entry
DECLARE_GEANT4_EVENT_READER_NS(DD4hep::Simulation,LCIOFileReader)
Markus Frank's avatar
Markus Frank committed

/// Initializing constructor
DD4hep::Simulation::LCIOFileReader::LCIOFileReader(const std::string& nam)
: LCIOEventReader(nam), m_nEvt(0) 
Markus Frank's avatar
Markus Frank committed
{
  m_reader = ::lcio::LCFactory::getInstance()->createLCReader(LCReader::directAccess);
  printout(INFO,"LCIOFileReader","Created file reader. Try to open input %s",nam.c_str());
Markus Frank's avatar
Markus Frank committed
  m_reader->open(nam);
Markus Frank's avatar
Markus Frank committed
}

/// Default destructor
DD4hep::Simulation::LCIOFileReader::~LCIOFileReader()    {
/// Read an event and fill a vector of MCParticles.
Geant4EventReader::EventReaderStatus
DD4hep::Simulation::LCIOFileReader::readParticleCollection(int event_number, EVENT::LCCollection** particles)  {

  // ::lcio::LCEvent* evt = m_reader->readEvent(/*runNumber*/ 0, event_number);
  // fg: direct access does not work if run number is different from 0 and/or event numbers are not stored consequutively
  if( m_nEvt == 0 && event_number != 0 ) {
    m_reader->skipNEvents( event_number ) ;
    printout(INFO,"LCIOFileReader","Skipping the first %d events ", event_number );
  }
  
  ::lcio::LCEvent* evt = m_reader->readNextEvent(); // simply read the events sequentially 
  ++m_nEvt ;

Markus Frank's avatar
Markus Frank committed
  if ( evt ) {
    *particles = evt->getCollection(LCIO::MCPARTICLE);
      printout(INFO,"LCIOFileReader","read collection %s from event %d in run %d ", 
               LCIO::MCPARTICLE, evt->getEventNumber(), evt->getRunNumber());
Markus Frank's avatar
Markus Frank committed
  }
  return EVENT_READER_ERROR;