source: trunk/MagicSoft/Mars/msimreflector/MReflector.h@ 9312

Last change on this file since 9312 was 9312, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 1.4 KB
Line 
1#ifndef MARS_MReflector
2#define MARS_MReflector
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8#ifndef ROOT_TObjArray
9#include <TObjArray.h>
10#endif
11
12class MQuaternion;
13class MMirror;
14
15class MReflector : public MParContainer
16{
17private:
18 //Simple Array // 5.1s
19 TObjArray fMirrors; // 6.1s (Pointer)
20 //TObjArray fMirrors; // 6.1s (GetObjectRef)
21 //TObjArray fMirrors; // 8.3s (Next)
22 //TObjArray fMirrors; // 10.1s (UncheckedAt)
23 //TList fMirrors; // 10.7s
24 //TOrdCollection fMirrors; // 23.4s
25
26 Double_t fMaxR;
27
28 void InitMaxR();
29
30 // MParContainer
31 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print);
32
33public:
34 MReflector(const char *name=NULL, const char *title=NULL);
35
36 const MMirror **GetFirstPtr() const;
37 const UInt_t GetNumMirrors() const;
38
39 const MMirror *GetMirror(UInt_t idx) const { return idx>=GetNumMirrors()?0:*(GetFirstPtr()+idx); }
40
41 Bool_t ReadFile(TString fname);
42
43 Double_t GetMaxR() const { return fMaxR; }
44
45 virtual Bool_t CanHit(const MQuaternion &p) const;
46
47 Int_t ExecuteReflector(MQuaternion &p, MQuaternion &u) const;
48
49 // TObject
50 void Paint(Option_t *o);
51 void Print(Option_t *o) const;
52
53 ClassDef(MReflector, 1) // Parameter container storing a collection of several mirrors (reflector)
54};
55
56#endif
Note: See TracBrowser for help on using the repository browser.