Changeset 3864
- Timestamp:
- 04/28/04 11:53:38 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3863 r3864 20 20 2004/04/28: Markus Gaug 21 21 22 * msignal/MArrivalTimeCalc.[h,cc] 23 -remove the ReInit() which calls to an MGeomCam which is later not 24 used 25 22 26 * macros/calibrate_data.C 23 27 - fixed a bug in loop 3 taking the default QE Cam instead of the -
trunk/MagicSoft/Mars/msignal/MArrivalTimeCalc.cc
r3628 r3864 90 90 { 91 91 92 93 92 fRawEvt = (MRawEvtData*)pList->FindObject(AddSerialNumber("MRawEvtData")); 94 93 if (!fRawEvt) … … 109 108 if (!fArrTime) 110 109 return kFALSE; 111 112 return kTRUE;113 }114 115 // --------------------------------------------------------------------------116 //117 // The ReInit searches for the following input containers:118 // - MGeomCam119 //120 Bool_t MArrivalTimeCalc::ReInit(MParList *pList)121 {122 MGeomCam *cam = (MGeomCam*)pList->FindObject(AddSerialNumber("MGeomCam"));123 if (!cam)124 {125 *fLog << err << GetDescriptor() << ": No MGeomCam found... aborting." << endl;126 return kFALSE;127 }128 110 129 111 return kTRUE; -
trunk/MagicSoft/Mars/msignal/MArrivalTimeCalc.h
r3628 r3864 23 23 24 24 Int_t PreProcess(MParList *pList); 25 Bool_t ReInit(MParList *pList);26 25 Int_t Process(); 27 26 Int_t PostProcess() {return kTRUE;} -
trunk/MagicSoft/Mars/msignal/MExtractor.cc
r3861 r3864 27 27 // MExtractor 28 28 // 29 // Base class for the signal extractors, used the function 30 // FindSignal() to extract the signal and substract the pedestal value 29 // Base class for the signal extractors, used the functions 30 // FindSignalHiGain() and FindSignalLoGain() to extract the signal and 31 // substract the pedestal value 31 32 // 32 33 // The following variables have to be set by the derived class and
Note:
See TracChangeset
for help on using the changeset viewer.