GRUTinizer
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TSega.h
Go to the documentation of this file.
1 #ifndef _TSEGA_H_
2 #define _TSEGA_H_
3 
4 #include "TDetector.h"
5 #include "TSegaHit.h"
6 
7 class TClonesArray;
8 
9 class TSega : public TDetector {
10 public:
11  TSega();
12  virtual ~TSega();
13 
14  void Copy(TObject& obj) const;
15 
16  virtual void Clear(Option_t* opt = "");
17  virtual void InsertHit(const TDetectorHit&);
18  virtual TSegaHit& GetSegaHit(int i);
19  virtual TDetectorHit& GetHit(int i);
20 
21 private:
22  virtual int BuildHits();
23 
24  TClonesArray* sega_hits; //->
25 
26  ClassDef(TSega,1);
27 };
28 
29 #endif /* _TSEGA_H_ */