Ignore:
Timestamp:
01/07/05 13:06:28 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbadpixels
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCalc.cc

    r5431 r5717  
    8686//
    8787MBadPixelsCalc::MBadPixelsCalc(const char *name, const char *title)
    88     : fPedestalLevel(3), fNamePedPhotContainer("MPedPhotCam")
     88    : fPedestalLevel(3), fNamePedPhotCam("MPedPhotCam")
    8989{
    9090    fName  = name  ? name  : gsDefName.Data();
     
    103103    if (fPedestalLevel>0)
    104104    {
    105         fPedPhotCam = (MPedPhotCam*)pList->FindObject(AddSerialNumber(fNamePedPhotContainer), "MPedPhotCam");
     105        fPedPhotCam = (MPedPhotCam*)pList->FindObject(AddSerialNumber(fNamePedPhotCam), "MPedPhotCam");
    106106        if (!fPedPhotCam)
    107107        {
    108           *fLog << err << fNamePedPhotContainer << "[MPedPhotCam] not found... aborting." << endl;
     108          *fLog << err << fNamePedPhotCam << "[MPedPhotCam] not found... aborting." << endl;
    109109            return kFALSE;
    110110        }
     
    118118    }
    119119
    120     *fLog << inf << "Name of MPedPhotCam container : " << fNamePedPhotContainer
    121           << endl;
     120    *fLog << inf << "Name of MPedPhotCam used: " << fNamePedPhotCam << endl;
    122121
    123122    return kTRUE;
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCalc.h

    r5431 r5717  
    1818
    1919    Float_t fPedestalLevel;
    20     TString fNamePedPhotContainer; // name of the 'MPedPhotCam' container
     20    TString fNamePedPhotCam; // name of the 'MPedPhotCam' container
    2121   
    2222    //    void CheckPedestalRMS() const;
     
    3131
    3232    void SetPedestalLevel(Float_t f) { fPedestalLevel=f; }
    33     void SetNamePedPhotContainer(const char *name)    { fNamePedPhotContainer = name; }
     33    void SetNamePedPhotCam(const char *name)    { fNamePedPhotCam = name; }
    3434
    3535    ClassDef(MBadPixelsCalc, 1) // Task to find bad pixels (star, broken pixels, etc)
Note: See TracChangeset for help on using the changeset viewer.