- Timestamp:
- 03/01/07 21:20:41 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhcalib/MHCalibrationPulseTimeCam.cc
r8342 r8343 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MHCalibrationPulseTimeCam.cc,v 1.2 8 2007-03-01 18:21:08tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MHCalibrationPulseTimeCam.cc,v 1.29 2007-03-01 21:16:55 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 310 310 const Int_t samples = fRunHeader->GetNumSamples(); 311 311 SetBinning(samples, -0.5, samples-0.5); 312 312 313 313 if (fHiGainArray->GetSize()==0) 314 314 { … … 443 443 continue; 444 444 445 const Float_t time = (Float_t)maxpos; 446 447 (*this)[i].FillHist(time); 445 (*this)[i].FillHist(maxpos); 448 446 449 447 const Int_t aidx = (*fGeom)[i].GetAidx(); 450 448 const Int_t sector = (*fGeom)[i].GetSector(); 451 449 452 fSumhiarea[aidx] += time;453 fSumhisector[sector] += time;454 450 fSumhiarea[aidx] += maxpos; 451 fSumhisector[sector] += maxpos; 452 455 453 fAverageAreaNum[aidx]++; 456 454 fAverageSectorNum[sector]++; -
trunk/MagicSoft/Mars/mpedestal/MPedCalcFromLoGain.cc
r8296 r8343 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MPedCalcFromLoGain.cc,v 1.3 5 2007-02-03 20:03:35tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MPedCalcFromLoGain.cc,v 1.36 2007-03-01 21:20:41 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 357 357 Int_t MPedCalcFromLoGain::ReadEnv(const TEnv &env, TString prefix, Bool_t print) 358 358 { 359 Bool_t rc=kFALSE; 359 Int_t rc=MExtractPedestal::ReadEnv(env, prefix, print); 360 if (rc==kERROR) 361 return kERROR; 360 362 361 363 // find resource for pedestal update
Note:
See TracChangeset
for help on using the changeset viewer.