Ignore:
Timestamp:
08/20/04 11:25:36 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeBlindCam.cc

    r4669 r4694  
    179179{
    180180
    181   const Int_t nblindpixels  = fSignal->GetNumBlindPixels();
     181  const UInt_t nblindpixels  = fSignal->GetNumBlindPixels();
    182182
    183183  Int_t runnr = 0;
     
    195195  if (fCam->GetNumBlindPixels() != nblindpixels)
    196196    {
    197       *fLog << err << "Size mismatch in MCalibrationChargeBlindCam ... abort." << endl;     
    198       *fLog << err << "Size of MCalibrationChargeBlindCam: " << fCam->GetNumBlindPixels()
    199             << "Size of MExtractedSignalBlindPixel: " << nblindpixels << endl;
     197        *fLog << err;
     198        *fLog << "Size mismatch in MCalibrationChargeBlindCam ... abort." << endl;
     199        *fLog << "  Size of MCalibrationChargeBlindCam: " << fCam->GetNumBlindPixels() << endl;
     200        *fLog << "  Size of MExtractedSignalBlindPixel: " << nblindpixels << endl;
    200201      return kFALSE;
    201202    }
     
    210211      fBlindPixelsArray->Expand(nblindpixels);
    211212
    212       for (Int_t i=0; i<nblindpixels; i++)
     213      for (UInt_t i=0; i<nblindpixels; i++)
    213214        {
    214215          (*fBlindPixelsArray)[i] = new MHCalibrationChargeBlindPix;
     
    230231  }
    231232
    232   for (Int_t i=0; i<nblindpixels; i++)
     233  for (UInt_t i=0; i<nblindpixels; i++)
    233234    {
    234235      TH1F *h = (*this)[i].GetHGausHist();
Note: See TracChangeset for help on using the changeset viewer.