Ignore:
Timestamp:
11/17/03 22:26:16 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mmain
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mmain/MEventDisplay.cc

    r2512 r2521  
    6060#include "MReadMarsFile.h"       // MReadMarsFile
    6161#include "MGeomApply.h"          // MGeomApply
     62#include "MFDataMember.h"        // MFDataMember
    6263#include "MMcPedestalCopy.h"     // MMcPedestalCopy
    6364#include "MMcPedestalNSBAdd.h"   // MMcPedestalNSBAdd
    6465#include "MCerPhotCalc.h"        // MCerPhotCalc
     66#include "MCerPhotAnal2.h"       // MCerPhotAnal2
    6567#include "MImgCleanStd.h"        // MImgCleanStd
    6668#include "MHillasCalc.h"         // MHillasCalc
     
    182184    MMcPedestalNSBAdd *pdnsb = new MMcPedestalNSBAdd;
    183185    MCerPhotCalc      *ncalc = new MCerPhotCalc;
     186    MCerPhotAnal2     *nanal = new MCerPhotAnal2;
    184187    MFillH            *fill1 = new MFillH(evt1, "MCerPhotEvt",  "MFillH1");
    185188    MImgCleanStd      *clean = new MImgCleanStd;
     
    193196    MHillasSrcCalc    *scalc = new MHillasSrcCalc;
    194197
     198    MFilter *f1=new MFDataMember("MRawRunHeader.fRunType", '>', 255.5);
     199    MFilter *f2=new MFDataMember("MRawRunHeader.fRunType", '<', 255.5);
     200
     201    ncalc->SetFilter(f1);
     202    nanal->SetFilter(f2);
     203
     204    tlist->AddToList(f1);
     205    tlist->AddToList(f2);
    195206    tlist->AddToList(pcopy);
    196207    tlist->AddToList(pdnsb);
    197208    tlist->AddToList(ncalc);
     209    tlist->AddToList(nanal);
    198210    tlist->AddToList(fill1);
    199211    tlist->AddToList(clean);
  • trunk/MagicSoft/Mars/mmain/Makefile

    r2506 r2521  
    2424INCLUDES = -I. -I../mbase -I../manalysis -I../mdatacheck -I../mraw       \
    2525           -I../mgui -I../mgeom -I../mhist -I../mmontecarlo -I../mfileio \
    26            -I../mimage -I../mhistmc -I../mgbase
     26           -I../mimage -I../mhistmc -I../mgbase -I../mfilter -I../mdata
    2727
    2828#------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.