| 1 |
#ifndef PNDID_H |
#ifndef PNDID_H |
| 2 |
#define PNDID_H |
#define PNDID_H |
| 3 |
#include "pHitID.h" |
#include "pHitID.h" |
| 4 |
|
#include "TObject.h" |
| 5 |
|
|
| 6 |
class pNdID : public pHitID { |
class pNdID : public pHitID { |
| 7 |
|
|
| 8 |
public: |
public: |
| 9 |
|
|
| 10 |
pNdID(const char * c=0): pHitID(c){}; |
pNdID(const char * c=0){ SetHitID(c); } |
| 11 |
|
|
| 12 |
void SetHitID(const char * c){ |
void SetHitID(const char * c){ |
| 13 |
_itube = (int) *c; |
_itube = (int) *c; |
| 20 |
|
|
| 21 |
int _itube; |
int _itube; |
| 22 |
|
|
| 23 |
|
public: |
| 24 |
|
ClassDef(pNdID,1); |
| 25 |
|
|
| 26 |
}; |
}; |
| 27 |
|
|
| 28 |
#endif //PNDID_H |
#endif //PNDID_H |
| 29 |
|
|