Changeset 2142


Ignore:
Timestamp:
05/27/03 16:02:28 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2141 r2142  
    11                                                 -*-*- END OF LINE -*-*-
    2 
    32 2003/05/26: Wolfgang Wittek
    43
     
    76                         continue;
    87 
    9    * Manalysis/MPadSchweizer.cc
     8   * manalysis/MPadSchweizer.cc
    109     - add pixels to MCerPhotEvt which are not yet in;
    1110       set their number of photons equal to zero
     
    1312
    1413
    15  2003/05/23: Abelardo Moralejo
     14 2003/05/27: Thomas Bretz
    1615
    1716   * mreflector/Makefile:
    18      added (was missing)
     17     - removed obsolete includes
     18
     19   * mbase/MLogManip.h:
     20     - for the moment removed dbg<< from dbginf again
     21
     22   * mimage/MHNewImagePar.cc:
     23     - security check in fill
     24
     25   * mmain/MAnalysis.cc:
     26     - fixed filling of MHNewImagePar
     27
     28
    1929
    2030 2003/05/26: Thomas Bretz
     
    2535   * manalysis/MMcPedestalNSBAdd.cc:
    2636     - fixed a typo (* instead of /)
     37
     38
     39
     40 2003/05/23: Abelardo Moralejo
     41
     42   * mreflector/Makefile:
     43     - added (was missing)
    2744
    2845
  • trunk/MagicSoft/Mars/mbase/MLogManip.h

    r2120 r2142  
    5656//
    5757#ifndef __CINT__
    58 #define dbginf dbg << __FILE__ << " l." << dec << __LINE__ << ": "
     58//#define dbginf dbg << __FILE__ << " l." << dec << __LINE__ << ": "
     59#define dbginf __FILE__ << " l." << dec << __LINE__ << ": "
    5960#define all    debug(0) // use this for output in any case
    6061#define err    debug(1) // use this for fatal errors (red)
  • trunk/MagicSoft/Mars/mimage/MHNewImagePar.cc

    r2049 r2142  
    144144Bool_t MHNewImagePar::Fill(const MParContainer *par, const Stat_t w)
    145145{
     146    if (!par)
     147    {
     148        *fLog << err << "MHNewImagePar::Fill: Pointer (!=NULL) expected." << endl;
     149        return kFALSE;
     150    }
     151
    146152    const MNewImagePar &h = *(MNewImagePar*)par;
    147153
  • trunk/MagicSoft/Mars/mmain/MAnalysis.cc

    r2026 r2142  
    203203     */
    204204
    205     MFillH hfill("MHHillas",      "MHillas");
    206     MFillH hfill2("MHHillasExt",  "MHillasSrc");
    207     MFillH hfill2s("MHHillasSrc", "MHillasSrc");
    208     MFillH hfill3("MHNewImagePar");
    209     MFillH sfill("MHStarMap",     "MHillas");
     205    MFillH hfill("MHHillas",       "MHillas");
     206    MFillH hfill2("MHHillasExt",   "MHillasSrc");
     207    MFillH hfill2s("MHHillasSrc",  "MHillasSrc");
     208    MFillH hfill3("MHNewImagePar", "MNewImagePar");
     209    MFillH sfill("MHStarMap",      "MHillas");
    210210    /*
    211211     MFillH hfill2s("HistSource  [MHHillasSrc]", "HillasSource");
  • trunk/MagicSoft/Mars/mreflector/Makefile

    r2137 r2142  
    2222#  connect the include files defined in the config.mk file
    2323#
    24 INCLUDES = -I. -I../mbase -I../mgeom -I../manalysis -I../mimage -I../mhist
     24INCLUDES = -I. -I../mbase
    2525
    2626#------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.