Parent Directory | Revision Log
Stable version, lot of changes, ROOT support included, persistency not yet activated
1 | #ifndef PNDID_H |
2 | #define PNDID_H |
3 | #include "pHitID.h" |
4 | #include "TObject.h" |
5 | |
6 | class pNdID : public pHitID { |
7 | |
8 | public: |
9 | |
10 | pNdID(const char * c=0){ SetHitID(c); } |
11 | |
12 | void SetHitID(const char * c){ |
13 | _itube = (int) *c; |
14 | } |
15 | |
16 | int GetItube(){return _itube;} |
17 | void SetItube(const int & i){_itube=i;} |
18 | |
19 | private: |
20 | |
21 | int _itube; |
22 | |
23 | public: |
24 | ClassDef(pNdID,1); |
25 | |
26 | }; |
27 | |
28 | #endif //PNDID_H |
29 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |