00001
00002
00003
00004
00005
00006
00007
00008
00010
00011 #ifndef NTPSRPLANE_H
00012 #define NTPSRPLANE_H
00013
00014 #include <iosfwd>
00015 #include "TObject.h"
00016
00017 class NtpSRPlane;
00018 std::ostream& operator << (std::ostream& os, const NtpSRPlane& ntp);
00019
00020 class NtpSRPlane : public TObject {
00021
00022 public:
00023
00024 NtpSRPlane(): n(0),nu(0),nv(0),beg(0),begu(0),begv(0),end(0),
00025 endu(0),endv(0) {}
00026 virtual ~NtpSRPlane() {}
00027
00028
00029 virtual std::ostream& Print(std::ostream& os) const;
00030 virtual void Print(Option_t* option = "") const;
00031
00032 public:
00033
00034
00035
00036
00037 UShort_t n;
00038 UShort_t nu;
00039 UShort_t nv;
00040 UShort_t beg;
00041 UShort_t begu;
00042 UShort_t begv;
00043 UShort_t end;
00044 UShort_t endu;
00045 UShort_t endv;
00046
00047 ClassDef(NtpSRPlane,1)
00048 };
00049
00050
00051 #endif // NTPSRPLANE_H