Changeset 706 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 03/27/01 16:05:54 (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MHillasCalc.cc
r695 r706 10 10 11 11 #include "MHillas.h" 12 #include "MCerPhotEvt.h" 12 13 13 14 #include "MLog.h" … … 47 48 Bool_t MHillasCalc::Process() 48 49 { 49 fHillas->Calc(*fGeomCam, *fCerPhotEvt); 50 51 return kTRUE; 50 // 51 // If you want do complex descisions inside the calculations 52 // we must move the calculation code inside this function 53 // 54 // If the calculation wasn't sucessfull skip this event 55 // 56 return fHillas->Calc(*fGeomCam, *fCerPhotEvt) ? kTRUE : kCONTINUE; 52 57 } 53 58
Note:
See TracChangeset
for help on using the changeset viewer.