File indexing completed on 2024-11-16 09:02:05
0001
0002
0003
0004
0005
0006
0007 #ifndef INCLUDE_EICSMEAR_ERHIC_EVENTSIMPLE_H_
0008 #define INCLUDE_EICSMEAR_ERHIC_EVENTSIMPLE_H_
0009
0010 #include <string>
0011 #include <Rtypes.h>
0012 #include "eicsmear/erhic/EventMC.h"
0013
0014 namespace erhic {
0015
0016
0017
0018
0019 class EventSimple : public EventMC {
0020 public:
0021
0022
0023
0024 EventSimple();
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036 virtual bool Parse(const std::string&);
0037 const ParticleMC* ScatteredLepton() const;
0038
0039 Double32_t numParticles;
0040
0041 ClassDef(erhic::EventSimple, 1)
0042 };
0043
0044 }
0045
0046 #endif