Changeset 19590
- Timestamp:
- 09/02/19 18:21:39 (5 years ago)
- Location:
- trunk/Mars/msimreflector
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/msimreflector/MSimRays.cc
r14153 r19590 57 57 #include "MPhotonData.h" 58 58 59 #include "M Reflector.h"59 #include "MOptics.h" 60 60 #include "MPointingPos.h" 61 61 … … 91 91 return kFALSE; 92 92 93 fReflector = (M Reflector*)pList->FindObject(fNameReflector, "MReflector");93 fReflector = (MOptics*)pList->FindObject(fNameReflector, "MOptics"); 94 94 if (!fReflector) 95 95 { 96 *fLog << inf << fNameReflector << " [M Reflector] not found..." << endl;96 *fLog << inf << fNameReflector << " [MOptics] not found..." << endl; 97 97 return kFALSE; 98 98 } -
trunk/Mars/msimreflector/MSimRays.h
r9903 r19590 12 12 class MCorsikaEvtHeader; 13 13 14 class M Reflector;14 class MOptics; 15 15 16 16 class MSimRays : public MTask … … 18 18 private: 19 19 MPhotonEvent *fEvt; //! Event storing the photons 20 M Reflector*fReflector; //! Geometry of the reflector20 MOptics *fReflector; //! Geometry of the reflector 21 21 MPointingPos *fPointPos; //! Direction the telescope is pointing to 22 22 MPointingPos *fSource; //! Direction the rays are coming from relative to the telescope
Note:
See TracChangeset
for help on using the changeset viewer.