BmnRoot
Loading...
Searching...
No Matches
BmnRegion.h
Go to the documentation of this file.
1#ifndef BMNREGION_H
2#define BMNREGION_H 1
3#include "TObject.h"
4
5class BmnRegion : public TObject {
6public:
7
9 BmnRegion(Double_t Zmin, Double_t Zmax);
11 virtual ~BmnRegion();
12 Bool_t IsInside(Double_t Z);
13 ClassDef(BmnRegion, 1)
14
15protected:
16 Double_t fZmin;
17 Double_t fZmax;
18};
19
20#endif
ClassDef(BmnRegion, 1) protected Double_t fZmax
Definition BmnRegion.h:13
Bool_t IsInside(Double_t Z)
Definition BmnRegion.cxx:15
virtual ~BmnRegion()
Definition BmnRegion.cxx:12