Changeset 3864 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
04/28/04 11:53:38 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3863 r3864  
    2020 2004/04/28: Markus Gaug
    2121 
     22   * msignal/MArrivalTimeCalc.[h,cc]
     23     -remove the ReInit() which calls to an MGeomCam which is later not
     24      used
     25
    2226   * macros/calibrate_data.C
    2327     - fixed a bug in loop 3 taking the default QE Cam instead of the
  • trunk/MagicSoft/Mars/msignal/MArrivalTimeCalc.cc

    r3628 r3864  
    9090{
    9191
    92 
    9392    fRawEvt = (MRawEvtData*)pList->FindObject(AddSerialNumber("MRawEvtData"));
    9493    if (!fRawEvt)
     
    109108    if (!fArrTime)
    110109        return kFALSE;
    111 
    112     return kTRUE;
    113 }
    114 
    115 // --------------------------------------------------------------------------
    116 //
    117 // The ReInit searches for the following input containers:
    118 //  - MGeomCam
    119 //
    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     }
    128110
    129111    return kTRUE;
  • trunk/MagicSoft/Mars/msignal/MArrivalTimeCalc.h

    r3628 r3864  
    2323 
    2424  Int_t PreProcess(MParList *pList);
    25   Bool_t ReInit(MParList *pList);
    2625  Int_t Process();
    2726  Int_t PostProcess() {return kTRUE;}
  • trunk/MagicSoft/Mars/msignal/MExtractor.cc

    r3861 r3864  
    2727//   MExtractor
    2828//
    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   
    3132//
    3233//   The following variables have to be set by the derived class and
Note: See TracChangeset for help on using the changeset viewer.