source: trunk/Mars/msimreflector/MReflector.h@ 13290

Last change on this file since 13290 was 9947, checked in by tbretz, 14 years ago
Implemented a new mirror type MMirrorHex90 and a possibility to write a file with a relfector definition.
File size: 1.6 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 // Helper for I/O
31 MMirror *EvalTokens(TObjArray &arr, Double_t defpsf) const;
32
33 // MParContainer
34 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print);
35
36public:
37 MReflector(const char *name=NULL, const char *title=NULL);
38
39 const MMirror **GetFirstPtr() const;
40 const UInt_t GetNumMirrors() const;
41
42 const MMirror *GetMirror(UInt_t idx) const { return idx>=GetNumMirrors()?0:*(GetFirstPtr()+idx); }
43
44 Bool_t ReadFile(TString fname, Double_t defpsf=-1);
45 Bool_t WriteFile(TString fname) const;
46
47 Double_t GetMaxR() const { return fMaxR; }
48 Double_t GetA() const;
49
50 virtual Bool_t CanHit(const MQuaternion &p) const;
51
52 Int_t ExecuteReflector(MQuaternion &p, MQuaternion &u) const;
53
54 void SetSigmaPSF(Double_t psf);
55
56 // TObject
57 void Paint(Option_t *o);
58 void Print(Option_t *o) const;
59
60 ClassDef(MReflector, 1) // Parameter container storing a collection of several mirrors (reflector)
61};
62
63#endif
Note: See TracBrowser for help on using the repository browser.