Changeset 4584 for trunk/MagicSoft/Mars/mfilter
- Timestamp:
- 08/12/04 06:58:34 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mfilter
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mfilter/MFSelBasic.cc
r3274 r4584 46 46 #include "MParList.h" 47 47 48 #include "M McEvt.hxx"48 #include "MPointingPos.h" 49 49 50 50 #include "MCerPhotEvt.h" … … 104 104 } 105 105 106 f McEvt = (MMcEvt*)pList->FindObject("MMcEvt");107 if (!f McEvt)108 { 109 *fLog << dbginf << "M McEvtnot found... aborting." << endl;106 fPointPos = (MPointingPos*)pList->FindObject("MPointingPos"); 107 if (!fPointPos) 108 { 109 *fLog << dbginf << "MPointingPos not found... aborting." << endl; 110 110 return kFALSE; 111 111 } … … 146 146 Int_t MFSelBasic::Process() 147 147 { 148 const Double_t theta = kRad2Deg*fMcEvt->GetTelescopeTheta();148 const Double_t theta = fPointPos->GetZd(); 149 149 150 150 fResult = kFALSE; -
trunk/MagicSoft/Mars/mfilter/MFSelBasic.h
r2663 r4584 14 14 #endif 15 15 16 class M McEvt;16 class MPointingPos; 17 17 class MGeomCam; 18 18 class MCerPhotEvt; … … 23 23 { 24 24 private: 25 const M McEvt *fMcEvt;25 const MPointingPos *fPointPos; 26 26 const MGeomCam *fCam; // Camera Geometry 27 27 const MCerPhotEvt *fEvt; // Cerenkov Photon Event -
trunk/MagicSoft/Mars/mfilter/Makefile
r3927 r4584 13 13 INCLUDES = -I. -I../mbase -I../mfbase -I../mraw -I../mmc -I../mdata \ 14 14 -I../manalysis -I../mfileio -I../mgeom -I../mimage \ 15 -I../mhbase -I../mmain -I../mgui -I../msignal 15 -I../mhbase -I../mmain -I../mgui -I../msignal -I../mpointing \ 16 16 -I../mpedestal 17 17
Note:
See TracChangeset
for help on using the changeset viewer.