#include <NtpSRPlane.h>
Inheritance diagram for NtpSRPlane:

Public Member Functions | |
| NtpSRPlane () | |
| virtual | ~NtpSRPlane () |
| virtual std::ostream & | Print (std::ostream &os) const |
| virtual void | Print (Option_t *option="") const |
Public Attributes | |
| UShort_t | n |
| UShort_t | nu |
| UShort_t | nv |
| UShort_t | beg |
| UShort_t | begu |
| UShort_t | begv |
| UShort_t | end |
| UShort_t | endu |
| UShort_t | endv |
|
|
Definition at line 24 of file NtpSRPlane.h. References beg, begu, begv, end, endu, endv, n, nu, and nv.
|
|
|
Definition at line 26 of file NtpSRPlane.h. 00026 {}
|
|
|
Reimplemented in NtpSRTrackPlane. Definition at line 33 of file NtpSRPlane.cxx. References Print(). 00033 {
00034 //
00035 // Purpose: Print plane group data in form supported by TObject::Print.
00036 //
00037 // Arguments: option (not used)
00038 //
00039
00040 Print(std::cout);
00041 return;
00042
00043 }
|
|
|
Reimplemented in NtpSRTrackPlane. Definition at line 20 of file NtpSRPlane.cxx. References beg, begu, begv, end, endu, endv, n, nu, and nv. Referenced by NtpSRTrackPlane::Print(), and Print(). 00020 {
00021 //
00022 // Purpose: Print plane group data on ostream.
00023 //
00024
00025 os << "(n,beg,end) all:(" << n << "," << beg << "," << end << ")"
00026 << " u:(" << nu << "," << begu <<"," << endu << ")"
00027 << " v:(" << nv << "," << begv <<"," << endv << ")" << endl;
00028
00029 return os;
00030
00031 }
|
|
|
|
|
|
|
|
|
|
1.3.9.1