Ignore:
Timestamp:
08/12/04 06:58:34 (20 years ago)
Author:
wittek
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mfilter
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfilter/MFSelBasic.cc

    r3274 r4584  
    4646#include "MParList.h"
    4747
    48 #include "MMcEvt.hxx"
     48#include "MPointingPos.h"
    4949
    5050#include "MCerPhotEvt.h"
     
    104104    }
    105105
    106     fMcEvt = (MMcEvt*)pList->FindObject("MMcEvt");
    107     if (!fMcEvt)
    108     {
    109         *fLog << dbginf << "MMcEvt not found... aborting." << endl;
     106    fPointPos = (MPointingPos*)pList->FindObject("MPointingPos");
     107    if (!fPointPos)
     108    {
     109        *fLog << dbginf << "MPointingPos not found... aborting." << endl;
    110110        return kFALSE;
    111111    }
     
    146146Int_t MFSelBasic::Process()
    147147{
    148     const Double_t theta = kRad2Deg*fMcEvt->GetTelescopeTheta();
     148    const Double_t theta = fPointPos->GetZd();
    149149
    150150    fResult  = kFALSE;
  • trunk/MagicSoft/Mars/mfilter/MFSelBasic.h

    r2663 r4584  
    1414#endif
    1515
    16 class MMcEvt;
     16class MPointingPos;
    1717class MGeomCam;
    1818class MCerPhotEvt;
     
    2323{
    2424private:
    25     const MMcEvt        *fMcEvt;       
     25    const MPointingPos  *fPointPos;       
    2626    const MGeomCam      *fCam;      // Camera Geometry
    2727    const MCerPhotEvt   *fEvt;      // Cerenkov Photon Event
  • trunk/MagicSoft/Mars/mfilter/Makefile

    r3927 r4584  
    1313INCLUDES = -I. -I../mbase -I../mfbase -I../mraw -I../mmc -I../mdata \
    1414           -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  \
    1616           -I../mpedestal
    1717
Note: See TracChangeset for help on using the changeset viewer.