Go to the documentation of this file.00001 #ifndef TPLASTICSEVENT_H
00002 #define TPLASTICSEVENT_H
00003
00004 #include "TGo4EventElement.h"
00005 #include "TPlasticsParam.h"
00006
00007
00008
00009
00010
00011
00012 class Plastics_Hit: public TObject {
00013 public:
00014 Double_t dTimeLeft;
00015 Double_t dTotLeft;
00016 Double_t dTimeRight;
00017 Double_t dTotRight;
00018
00019 Plastics_Hit() : TObject() { Clear(); };
00020
00021 void Clear(void);
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 ClassDef(Plastics_Hit, 1)
00032 };
00033
00034 class TPlasticsEvent : public TGo4EventElement {
00035 public:
00036
00037
00038 TPlasticsEvent();
00039 TPlasticsEvent(const char* name, Short_t id=0);
00040 virtual ~TPlasticsEvent();
00041
00043 virtual void Clear(Option_t *t="");
00044
00045
00046 std::vector<Plastics_Hit> fHits[NB_PLASTICS_MAX];
00047
00048 ClassDef(TPlasticsEvent,1)
00049 };
00050 #endif //TPLASTICSEVENT_H
00051
00052
00053