Changeset 2212
- Timestamp:
- 06/23/03 13:44:29 (22 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MCerPhotCalc.cc
r2178 r2212 89 89 // - MCerPhotEvt 90 90 // 91 Bool_t MCerPhotCalc::PreProcess(MParList *pList)91 Int_t MCerPhotCalc::PreProcess(MParList *pList) 92 92 { 93 93 fRunHeader = (MRawRunHeader*)pList->FindObject("MRawRunHeader"); … … 133 133 // we enable a fix for truncated pedestal means in this version. 134 134 // 135 Bool_t MCerPhotCalc::ReInit(MParList *pList)135 Int_t MCerPhotCalc::ReInit(MParList *pList) 136 136 { 137 137 const MRawRunHeader *runheader = (MRawRunHeader*)pList->FindObject("MRawRunHeader"); … … 170 170 // pixel in the MCerPhotEvt container. 171 171 // 172 Bool_t MCerPhotCalc::Process()172 Int_t MCerPhotCalc::Process() 173 173 { 174 174 //fCerPhotEvt->InitSize(fRawEvt->GetNumPixels()); -
trunk/MagicSoft/Mars/manalysis/MCerPhotCalc.h
r2178 r2212 41 41 MCerPhotCalc(const char *name=NULL, const char *title=NULL); 42 42 43 Bool_t PreProcess(MParList *pList);44 Bool_t Process();45 Bool_t ReInit(MParList *pList);43 Int_t PreProcess(MParList *pList); 44 Int_t Process(); 45 Int_t ReInit(MParList *pList); 46 46 47 47 // FIXME: The array size should be checked!
Note:
See TracChangeset
for help on using the changeset viewer.