Changeset 2601
- Timestamp:
- 12/04/03 15:00:24 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mpointing
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mpointing/MPointingPos.cc
r2600 r2601 25 25 ///////////////////////////////////////////////////////////////////////////// 26 26 // 27 // MPointingPos ition27 // MPointingPos 28 28 // 29 29 // Store the current pointing position of the telescope... 30 30 // 31 31 ///////////////////////////////////////////////////////////////////////////// 32 #include "MPointingPos ition.h"32 #include "MPointingPos.h" 33 33 34 ClassImp(MPointingPos ition);34 ClassImp(MPointingPos); 35 35 36 36 using namespace std; -
trunk/MagicSoft/Mars/mpointing/MPointingPos.h
r2600 r2601 1 #ifndef MARS_MPointingPos ition2 #define MARS_MPointingPos ition1 #ifndef MARS_MPointingPos 2 #define MARS_MPointingPos 3 3 4 4 #ifndef MARS_MParContainer … … 6 6 #endif 7 7 8 class MPointingPos ition: public MParContainer8 class MPointingPos : public MParContainer 9 9 { 10 10 private: … … 17 17 18 18 public: 19 MPointingPos ition()19 MPointingPos() 20 20 { 21 fName = "MPointingPos ition";21 fName = "MPointingPos"; 22 22 fTitle = "Container storing the (corrected) telescope pointing position"; 23 23 } … … 29 29 Double_t GetAz() const { return fAz; } 30 30 31 ClassDef(MPointingPos ition, 1) //Container storing the (corrected) telescope pointing position31 ClassDef(MPointingPos, 1) //Container storing the (corrected) telescope pointing position 32 32 }; 33 33 -
trunk/MagicSoft/Mars/mpointing/MPointingPosCalc.cc
r2600 r2601 25 25 ///////////////////////////////////////////////////////////////////////////// 26 26 // 27 // MPointingPos itionCalc27 // MPointingPosCalc 28 28 // 29 29 // Currently: … … 46 46 // 47 47 ///////////////////////////////////////////////////////////////////////////// 48 #include "MPointingPos itionCalc.h"48 #include "MPointingPosCalc.h" 49 49 50 50 #include "MLog.h" … … 53 53 #include "MParList.h" 54 54 55 #include "MPointingPos ition.h"55 #include "MPointingPos.h" 56 56 #include "MRawRunHeader.h" 57 57 #include "MReportDrive.h" 58 58 #include "MMcEvt.hxx" 59 59 60 ClassImp(MPointingPos itionCalc);60 ClassImp(MPointingPosCalc); 61 61 62 62 using namespace std; … … 67 67 // the run type search either for MMcEvt or MReportDrive. 68 68 // 69 Bool_t MPointingPos itionCalc::ReInit(MParList *plist)69 Bool_t MPointingPosCalc::ReInit(MParList *plist) 70 70 { 71 71 MRawRunHeader *run = (MRawRunHeader*)plist->FindObject("MRawRunHeader"); … … 116 116 // -------------------------------------------------------------------------- 117 117 // 118 // Search for 'MPointingPos ition'. Create if not found.118 // Search for 'MPointingPos'. Create if not found. 119 119 // 120 Int_t MPointingPos itionCalc::PreProcess(MParList *plist)120 Int_t MPointingPosCalc::PreProcess(MParList *plist) 121 121 { 122 fPosition = (MPointingPos ition*)plist->FindCreateObj("MPointingPosition");122 fPosition = (MPointingPos*)plist->FindCreateObj("MPointingPos"); 123 123 return fPosition ? kTRUE : kFALSE; 124 124 } … … 128 128 // See class description. 129 129 // 130 Int_t MPointingPos itionCalc::Process()130 Int_t MPointingPosCalc::Process() 131 131 { 132 132 switch (fRunType) -
trunk/MagicSoft/Mars/mpointing/MPointingPosCalc.h
r2600 r2601 8 8 class MMcEvt; 9 9 class MReportDrive; 10 class MPointingPos ition;10 class MPointingPos; 11 11 12 class MPointingPos itionCalc : public MParContainer12 class MPointingPosCalc : public MParContainer 13 13 { 14 14 private: 15 MMcEvt 16 MReportDrive 17 MPointingPos ition*fPosition; //! Output container to store pointing position15 MMcEvt *fMcEvt; //! MMcEvt to get simulated poiting position from 16 MReportDrive *fReport; //! MReportDrive to get real poiting position from 17 MPointingPos *fPosition; //! Output container to store pointing position 18 18 19 19 UShort_t fRunType; //! Run Type to decide where to get pointing position from … … 24 24 25 25 public: 26 MPointingPos itionCalc()26 MPointingPosCalc() 27 27 { 28 fName = "MPointingPos itionCalc";28 fName = "MPointingPosCalc"; 29 29 fTitle = "Task calculating the pointing position"; 30 30 } 31 31 32 ClassDef(MPointingPos itionCalc, 0) //Task calculating the pointing position32 ClassDef(MPointingPosCalc, 0) //Task calculating the pointing position 33 33 }; 34 34 -
trunk/MagicSoft/Mars/mpointing/PointingLinkDef.h
r2598 r2601 5 5 #pragma link off all functions; 6 6 7 #pragma link C++ class MPointingPos ition+;8 #pragma link C++ class MPointingPos itionCalc+;7 #pragma link C++ class MPointingPos+; 8 #pragma link C++ class MPointingPosCalc+; 9 9 10 10 #endif
Note:
See TracChangeset
for help on using the changeset viewer.