MpdMcordPoint.h 649 B

12345678910111213141516171819202122232425
  1. /*
  2. * MpdMcordPoint.h
  3. *
  4. * Created on: 21 maj 2019
  5. * Author: Daniel Wielanek
  6. * E-mail: daniel.wielanek@gmail.com
  7. * Warsaw University of Technology, Faculty of Physics
  8. */
  9. #ifndef MCORD_MCORD_MPDMCORDPOINT_H_
  10. #define MCORD_MCORD_MPDMCORDPOINT_H_
  11. #include "TObject.h"
  12. #include "TLorentzVector.h"
  13. #include "FairMCPoint.h"
  14. class MpdMcordPoint : public FairMCPoint{
  15. private:
  16. public:
  17. MpdMcordPoint();
  18. MpdMcordPoint(Int_t trackId, Int_t detId, TVector3 pos, TVector3 mom,
  19. Double_t time, Double_t length, Double_t eloss,Int_t eventId = 0);
  20. virtual ~MpdMcordPoint();
  21. ClassDef(MpdMcordPoint,1)
  22. };
  23. #endif /* MCORD_MCORD_MPDMCORDPOINT_H_ */