MpdRegion.h 744 B

12345678910111213141516171819202122232425262728293031
  1. // -------------------------------------------------------------------------
  2. // MpdRegion header file -----
  3. // Created 23/07/13 by P. Batyuk (MPD) <batyuk@jinr.ru> -----
  4. // from PndRegion (PNDROOT) -----
  5. // -------------------------------------------------------------------------
  6. #ifndef MPDREGION_H
  7. #define MPDREGION_H 1
  8. #include "TObject.h"
  9. class MpdRegion : public TObject {
  10. public:
  11. /** Default constructor **/
  12. MpdRegion( Double_t Zmin, Double_t Zmax);
  13. /** Destructor **/
  14. virtual ~MpdRegion();
  15. Bool_t IsInside(Double_t Z);
  16. ClassDef(MpdRegion,1)
  17. protected:
  18. Double_t fZmin;
  19. Double_t fZmax;
  20. };
  21. #endif