Changeset 5479 for trunk/MagicSoft/Mars


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

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5473 r5479  
    5555     - added a direct calculation of mean's and RMS's stored in the
    5656       "LoGain"-variables of MCalibrationPedCam
     57
     58   * mpedestal/MCalibrationPedCam.cc
     59     - added new flags in the GetPixelContent called the "low-gain"
     60       entries (s.a.)
     61
    5762 
    5863   * mpedestal/MExtractPedestal.[h,cc]
  • trunk/MagicSoft/Mars/mcalib/MCalibrationPedCam.cc

    r5044 r5479  
    118118    {
    119119    case 0:
    120       val = (*this)[idx].GetMean();
     120      val = (*this)[idx].GetHiGainMean();
    121121      break;
    122122    case 1:
    123       val = (*this)[idx].GetMeanErr();
     123      val = (*this)[idx].GetHiGainMeanErr();
    124124      break;
    125125    case 2:
    126       val = (*this)[idx].GetSigma();
     126      val = (*this)[idx].GetHiGainSigma();
    127127      break;
    128128    case 3:
    129       val = (*this)[idx].GetSigmaErr();
     129      val = (*this)[idx].GetHiGainSigmaErr();
    130130      break;
    131131    case 4:
    132       val = (*this)[idx].GetProb();
     132      val = (*this)[idx].GetHiGainProb();
     133      break;
     134    case 5:
     135      val = (*this)[idx].GetLoGainMean() > 1. ? 0. : (*this)[idx].GetLoGainMean();
     136      break;
     137    case 6:
     138      val = (*this)[idx].GetLoGainMeanErr();
     139      break;
     140    case 7:
     141      val = (*this)[idx].GetLoGainSigma();
     142      break;
     143    case 8:
     144      val = (*this)[idx].GetLoGainSigmaErr();
    133145      break;
    134146    default:
  • trunk/MagicSoft/Mars/mhcalib/MHCalibrationTestCam.h

    r5137 r5479  
    66#endif
    77
    8 #ifndef ROOT_TArrayF
    9 #include <TArrayF.h>
     8#ifndef MARS_MArrayF
     9#include <MArrayF.h>
    1010#endif
    11 #ifndef ROOT_TArrayI
    12 #include <TArrayI.h>
     11#ifndef MARS_MArrayI
     12#include <MArrayI.h>
    1313#endif
    1414
     
    2727  static const TString gsHistYTitle;   //! Default Histogram y-axis titles
    2828 
    29   TArrayF fMeanMeanPhotPerArea;
    30   TArrayF fRmsMeanPhotPerArea   ;
    31   TArrayF fMeanSigmaPhotPerArea;
    32   TArrayF fRmsSigmaPhotPerArea   ;
     29  MArrayF fMeanMeanPhotPerArea;
     30  MArrayF fRmsMeanPhotPerArea   ;
     31  MArrayF fMeanSigmaPhotPerArea;
     32  MArrayF fRmsSigmaPhotPerArea   ;
    3333
    3434  Bool_t ReInitHists(MParList *pList);
Note: See TracChangeset for help on using the changeset viewer.