Ignore:
Timestamp:
03/18/05 17:54:02 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhcalib/MHCalibrationTestCam.cc

    r6210 r6857  
    2626// MHCalibrationTestCam                                               
    2727//                                                                       
    28 // Fills the calibrated signal from an MCerPhotEvt into
     28// Fills the calibrated signal from an MSignalCam into
    2929// MHCalibrationPix for every:
    3030//
     
    9494#include "MCalibrationPix.h"
    9595
    96 #include "MCerPhotEvt.h"
    97 #include "MCerPhotPix.h"
     96#include "MSignalCam.h"
     97#include "MSignalPix.h"
    9898
    9999#include "MGeomCam.h"
     
    155155//
    156156// Searches pointer to:
    157 // - MCerPhotEvt
     157// - MSignalCam
    158158//
    159159// Calls:
     
    174174
    175175
    176   MCerPhotEvt *signal = (MCerPhotEvt*)pList->FindObject("MCerPhotEvt");
     176  MSignalCam *signal = (MSignalCam*)pList->FindObject("MSignalCam");
    177177  if (!signal)
    178178  {
    179       *fLog << err << "MCerPhotEvt not found... abort." << endl;
     179      *fLog << err << "MSignalCam not found... abort." << endl;
    180180      return kFALSE;
    181181  }
     
    199199// -------------------------------------------------------------------------------
    200200//
    201 // Retrieves pointer to MCerPhotEvt:
     201// Retrieves pointer to MSignalCam:
    202202//
    203203// Retrieves from MGeomCam:
     
    208208// Fills HiGain histograms (MHGausEvents::FillHistAndArray())
    209209// with:
    210 // - MCerPhotPix::GetNumPhotons(pixid);
     210// - MSignalPix::GetNumPhotons(pixid);
    211211//
    212212Bool_t MHCalibrationTestCam::FillHists(const MParContainer *par, const Stat_t w)
    213213{
    214214
    215   MCerPhotEvt *calibration = (MCerPhotEvt*)par;
     215  MSignalCam *calibration = (MSignalCam*)par;
    216216  if (!calibration)
    217217    {
     
    234234      MHCalibrationPix &histhi = (*this)[i];
    235235
    236       const MCerPhotPix *pix = calibration->GetPixById(i);
     236      const MSignalPix *pix = calibration->GetPixById(i);
    237237      if (!pix)
    238238        continue;
Note: See TracChangeset for help on using the changeset viewer.