Changeset 6034


Ignore:
Timestamp:
01/27/05 10:05:51 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6033 r6034  
    5858     - trying to get rid of the Err_%p workaround.
    5959
    60    * manalysis/MCerPhotEvt.h:
     60   * manalysis/MCerPhotEvt.[h,cc]:
    6161     - added some '!' signs in the comment line. This is quick hack
    6262       to gain I/O speed and storage space. We will soon have new
    6363       containers for the calibrated data and image cleaning
    6464       information.
     65     - changed version number to 6
    6566
    6667
  • trunk/MagicSoft/Mars/manalysis/MCerPhotPix.cc

    r6031 r6034  
    4848// ----------
    4949//  - added fIdxIsland
     50//
     51// Version 6:
     52// ----------
     53//  - put the '!' into the comment line for
     54//      Bool_t   fIsCore;        //! the pixel is a Core pixel -> kTRUE
     55//      Short_t  fRing;          //! NT: number of analyzed rings around the core pixels, fRing>0 means: used, fRing= 0 means: unused, fRing= -1 means: unmapped (no possible to use in the calculation of the image parameters)
     56//      Short_t  fIdxIsland;     //! the pixel is a Core pixel -> kTRUE
     57//      Bool_t   fIsHGSaturated; //! the pixel's high gain is saturated
     58//    This is a queick hack to gain storage space - the structure of
     59//    the container for calibrated data will change soon.
    5060//
    5161////////////////////////////////////////////////////////////////////////////
  • trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h

    r6031 r6034  
    55#include "MParContainer.h"
    66#endif
     7#ifndef MARS_MMath
    78#include "MMath.h"
     9#endif
     10
    811class MCerPhotPix : public MParContainer
    912{
    1013private:
    1114
    12     Int_t    fPixId;     // the pixel Id
     15    Int_t    fPixId;         // the pixel Id
    1316
    14     Bool_t   fIsCore;     // the pixel is a Core pixel -> kTRUE
    15     Short_t  fRing;       // NT: number of analyzed rings around the core pixels, fRing>0 means: used, fRing= 0 means: unused, fRing= -1 means: unmapped (no possible to use in the calculation of the image parameters)
    16     Short_t  fIdxIsland;  // the pixel is a Core pixel -> kTRUE
     17    Bool_t   fIsCore;        //! the pixel is a Core pixel -> kTRUE
     18    Short_t  fRing;          //! NT: number of analyzed rings around the core pixels, fRing>0 means: used, fRing= 0 means: unused, fRing= -1 means: unmapped (no possible to use in the calculation of the image parameters)
     19    Short_t  fIdxIsland;     //! the pixel is a Core pixel -> kTRUE
    1720
    18     Float_t  fPhot;      // The number of Cerenkov photons
    19     Float_t  fErrPhot;   // the error of fPhot
     21    Float_t  fPhot;          // The number of Cerenkov photons
     22    Float_t  fErrPhot;       // the error of fPhot
    2023
    2124    Bool_t   fIsSaturated;   // the pixel's low gain is saturated
    22     Bool_t   fIsHGSaturated; // the pixel's high gain is saturated
     25    Bool_t   fIsHGSaturated; //! the pixel's high gain is saturated
    2326
    2427    // FIXME: arrival time t, and it's error sigma t
     
    6366    Bool_t  IsSortable() const { return kTRUE; }
    6467
    65     ClassDef(MCerPhotPix, 5)  // class containing information about the Cerenkov Photons in a pixel
     68    ClassDef(MCerPhotPix, 6)  // class containing information about the Cerenkov Photons in a pixel
    6669};
    6770
    6871#endif
    69 
    70 
    71 
Note: See TracChangeset for help on using the changeset viewer.