Changeset 8342
- Timestamp:
- 03/01/07 18:21:47 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8340 r8342 45 45 - fixed ReadEnv 46 46 47 * mraw/MRawRunHeader.h: 48 - added new member function GetNumSamples 49 47 50 48 51 -
trunk/MagicSoft/Mars/mhcalib/MHCalibrationChargeCam.cc
r8339 r8342 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MHCalibrationChargeCam.cc,v 1.5 2 2007-03-01 17:59:12tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MHCalibrationChargeCam.cc,v 1.53 2007-03-01 18:21:08 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 387 387 if (fGeom->InheritsFrom("MGeomCamMagic")) 388 388 if ( fColor == MCalibrationCam::kBLUE) 389 Set LoGainLast(2.*fLoGainLast - fLoGainFirst);389 SetBinning(fLoGainNbins, fLoGainFirst, 2.*fLoGainLast - fLoGainFirst); 390 390 391 391 InitHiGainArrays(npixels,nareas,nsectors); -
trunk/MagicSoft/Mars/mhcalib/MHCalibrationPulseTimeCam.cc
r8340 r8342 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MHCalibrationPulseTimeCam.cc,v 1.2 7 2007-03-01 18:05:42tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MHCalibrationPulseTimeCam.cc,v 1.28 2007-03-01 18:21:08 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 707 707 708 708 Int_t rc = MHCalibrationCam::ReadEnv(env,prefix,print); 709 if (rc= kERROR)710 return kERROR;711 709 if (rc==kERROR) 710 return kERROR; 711 712 712 if (IsEnvDefined(env, prefix, "SaturationLimit", print)) 713 713 { … … 715 715 rc = kTRUE; 716 716 } 717 717 718 718 if (IsEnvDefined(env, prefix, "LowerSignalLimit", print)) 719 719 { -
trunk/MagicSoft/Mars/mraw/MRawRunHeader.h
r8326 r8342 99 99 UShort_t GetNumSamplesLoGain() const { return fNumSamplesLoGain; } 100 100 UShort_t GetNumSamplesHiGain() const { return fNumSamplesHiGain; } 101 UInt_t GetNumSamples() const { return fNumSamplesHiGain+fNumSamplesLoGain; } 101 102 UInt_t GetNumEvents() const { return fNumEvents; } 102 103 const MTime &GetRunStart() const { return fRunStart; }
Note:
See TracChangeset
for help on using the changeset viewer.