Something went wrong on our end
-
Bertram Kopf authored6448ac19
EventReader.hh 254 B
#pragma once
#include <string>
#include <vector>
class EventList;
class EventReader
{
public:
EventReader();
EventReader(bool useWeight);
virtual ~EventReader();
virtual bool fillAll(EventList& evtList) = 0;
protected:
bool _useWeight;
};