File indexing completed on 2025-02-22 10:33:30
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef INCLUDE_EICSMEAR_ERHIC_EVENTMCFILTERABC_H_
0011 #define INCLUDE_EICSMEAR_ERHIC_EVENTMCFILTERABC_H_
0012
0013 #include <Rtypes.h>
0014
0015 namespace erhic {
0016
0017 class VirtualEvent;
0018
0019
0020
0021
0022 class EventMCFilterABC {
0023 public:
0024
0025
0026
0027 virtual ~EventMCFilterABC() { }
0028
0029
0030
0031
0032
0033 virtual bool Accept(const VirtualEvent&) const = 0;
0034
0035 ClassDef(erhic::EventMCFilterABC, 1)
0036 };
0037
0038 }
0039
0040 #endif