Changeset 19543
- Timestamp:
- 06/04/19 10:26:45 (5 years ago)
- Location:
- trunk/Mars/msimreflector
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/msimreflector/MReflector.cc
r9947 r19543 16 16 ! 17 17 ! 18 ! Author(s): Thomas Bretz, 1/2009 <mailto:tbretz@ astro.uni-wuerzburg.de>19 ! 20 ! Copyright: CheObs Software Development, 2000-20 0918 ! Author(s): Thomas Bretz, 1/2009 <mailto:tbretz@physik.rwth-aachen.de> 19 ! 20 ! Copyright: CheObs Software Development, 2000-2019 21 21 ! 22 22 ! … … 26 26 // 27 27 // MReflector 28 // 29 // Version 2: 30 // ---------- 31 // * derived from common base class MOptics 28 32 // 29 33 ////////////////////////////////////////////////////////////////////////////// -
trunk/Mars/msimreflector/MReflector.h
r9947 r19543 2 2 #define MARS_MReflector 3 3 4 #ifndef MARS_M ParContainer5 #include "M ParContainer.h"4 #ifndef MARS_MOptics 5 #include "MOptics.h" 6 6 #endif 7 7 … … 13 13 class MMirror; 14 14 15 class MReflector : public M ParContainer15 class MReflector : public MOptics 16 16 { 17 17 private: … … 50 50 virtual Bool_t CanHit(const MQuaternion &p) const; 51 51 52 Int_t Execute Reflector(MQuaternion &p, MQuaternion &u) const;52 Int_t ExecuteOptics(MQuaternion &p, MQuaternion &u) const; 53 53 54 54 void SetSigmaPSF(Double_t psf); 55 56 virtual Bool_t IsValid() const { return fMirrors.GetEntries(); } 55 57 56 58 // TObject … … 58 60 void Print(Option_t *o) const; 59 61 60 ClassDef(MReflector, 1) // Parameter container storing a collection of several mirrors (reflector)62 ClassDef(MReflector, 2) // Parameter container storing a collection of several mirrors (reflector) 61 63 }; 62 64
Note:
See TracChangeset
for help on using the changeset viewer.