Changeset 5117


Ignore:
Timestamp:
09/19/04 17:55:17 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5114 r5117  
    1919
    2020                                                 -*-*- END OF LINE -*-*-
     21 2004/09/19: Thomas Bretz
     22
     23   * mbadpixels/MBadPIxlesCam.[h,cc]:
     24     - added Reset-function. This makes sure, that the event-wise
     25       bad pixels determined by MBadPIxelsCalc are deleted after
     26       one execution of the event-loop and don't remain for all
     27       following data
     28
     29
     30
    2131 2004/09/17: Markus Gaug
    2232
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCalc.h

    r4632 r5117  
    3737
    3838#endif
    39 
    40 
    41 
    42 
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc

    r4889 r5117  
    166166{
    167167    fArray->ForEach(TObject, Clear)();
     168}
     169
     170// --------------------------------------------------------------------------
     171//
     172// Reset event depending bits
     173//
     174void MBadPixelsCam::Reset()
     175{
     176    fArray->ForEach(MParContainer, Reset)();
    168177}
    169178
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.h

    r4889 r5117  
    2525    ~MBadPixelsCam();
    2626
     27    void Reset();
    2728    void Clear(Option_t *o="");
    2829    void Print(Option_t *o="") const;
  • trunk/MagicSoft/Mars/mpointing/MPointingPos.h

    r4817 r5117  
    2525
    2626public:
    27     MPointingPos(const char *name=0, const char *title=0)
     27    MPointingPos(const char *name=0, const char *title=0) : fZd(0), fAz(0), fRa(0), fHa(0), fDec(0)
    2828    {
    2929        fName  = name ? name   : "MPointingPos";
Note: See TracChangeset for help on using the changeset viewer.