PicoDstRecoEvent.h 281 B

1234567891011121314151617
  1. #ifndef PICODST_RECO_EVENT_H
  2. #define PICODST_RECO_EVENT_H
  3. #include <TROOT.h>
  4. #include "PicoDstBaseEvent.h"
  5. class PicoDstRecoEvent : public PicoDstBaseEvent, public TObject
  6. {
  7. public:
  8. PicoDstRecoEvent();
  9. virtual ~PicoDstRecoEvent();
  10. ClassDef(PicoDstRecoEvent,1);
  11. };
  12. #endif