LCIO
02.17
|
Listener for the occurence of LCEvents when reading a stream. More...
#include <LCEventListener.h>
Public Member Functions | |
virtual | ~LCEventListener () |
Destructor. More... | |
virtual void | processEvent (EVENT::LCEvent *evt)=0 |
Call back for analyzing an LCEvent. More... | |
virtual void | modifyEvent (EVENT::LCEvent *evt)=0 |
Call back for updating an LCEvent. More... | |
Listener for the occurence of LCEvents when reading a stream.
User classes should implement this interface for their analysis code and then register the listener with LCReader.
Definition at line 24 of file LCEventListener.h.
|
inlinevirtual |
Destructor.
Definition at line 28 of file LCEventListener.h.
|
pure virtual |
Call back for updating an LCEvent.
Here all modifications are allowed. Only use this method if you need to remove a collection from the event or you need to modify (fix) exisiting data.
Implemented in BenchmarkListener.
|
pure virtual |
Call back for analyzing an LCEvent.
The access to the event is 'read only'. Adding new collections to the event is allowed wheras existing data collections and elements can not be modified.
Implemented in BenchmarkListener.