Parent Directory
|
Revision Log
First release
| 1 | #ifndef PNDID_H |
| 2 | #define PNDID_H |
| 3 | #include "pHitID.h" |
| 4 | |
| 5 | class pNdID : public pHitID { |
| 6 | |
| 7 | public: |
| 8 | |
| 9 | pNdID(const char * c=0): pHitID(c){}; |
| 10 | |
| 11 | void SetHitID(const char * c){ |
| 12 | _itube = (int) *c; |
| 13 | } |
| 14 | |
| 15 | int GetItube(){return _itube;} |
| 16 | void SetItube(const int & i){_itube=i;} |
| 17 | |
| 18 | private: |
| 19 | |
| 20 | int _itube; |
| 21 | |
| 22 | }; |
| 23 | |
| 24 | #endif //PNDID_H |
| ViewVC Help | |
| Powered by ViewVC 1.1.23 |