Changeset 2521 for trunk/MagicSoft/Mars/mmain
- Timestamp:
- 11/17/03 22:26:16 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mmain
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mmain/MEventDisplay.cc
r2512 r2521 60 60 #include "MReadMarsFile.h" // MReadMarsFile 61 61 #include "MGeomApply.h" // MGeomApply 62 #include "MFDataMember.h" // MFDataMember 62 63 #include "MMcPedestalCopy.h" // MMcPedestalCopy 63 64 #include "MMcPedestalNSBAdd.h" // MMcPedestalNSBAdd 64 65 #include "MCerPhotCalc.h" // MCerPhotCalc 66 #include "MCerPhotAnal2.h" // MCerPhotAnal2 65 67 #include "MImgCleanStd.h" // MImgCleanStd 66 68 #include "MHillasCalc.h" // MHillasCalc … … 182 184 MMcPedestalNSBAdd *pdnsb = new MMcPedestalNSBAdd; 183 185 MCerPhotCalc *ncalc = new MCerPhotCalc; 186 MCerPhotAnal2 *nanal = new MCerPhotAnal2; 184 187 MFillH *fill1 = new MFillH(evt1, "MCerPhotEvt", "MFillH1"); 185 188 MImgCleanStd *clean = new MImgCleanStd; … … 193 196 MHillasSrcCalc *scalc = new MHillasSrcCalc; 194 197 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); 195 206 tlist->AddToList(pcopy); 196 207 tlist->AddToList(pdnsb); 197 208 tlist->AddToList(ncalc); 209 tlist->AddToList(nanal); 198 210 tlist->AddToList(fill1); 199 211 tlist->AddToList(clean); -
trunk/MagicSoft/Mars/mmain/Makefile
r2506 r2521 24 24 INCLUDES = -I. -I../mbase -I../manalysis -I../mdatacheck -I../mraw \ 25 25 -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 27 27 28 28 #------------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.