EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PndRegion.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PndRegion.h
1 // -------------------------------------------------------------------------
2 // ----- PndRegion header file -----
3 // ----- Created 29/01/07 by M. Al/Turany -----
4 // -------------------------------------------------------------------------
11 #ifndef PNDREGION_H
12 #define PNDREGION_H 1
13 #include "TObject.h"
14 
15 class PndRegion : public TObject {
16 
17 public:
18 
20  PndRegion( Double_t Zmin, Double_t Zmax);
22  virtual ~PndRegion();
23  Bool_t IsInside(Double_t Z);
24  ClassDef(PndRegion,1)
25  protected:
26  Double_t fZmin;
27  Double_t fZmax;
28 };
29 
30 #endif
31 
32 
33