Changeset 3667 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 04/06/04 13:58:05 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationCam.cc
r3645 r3667 196 196 } 197 197 198 void MCalibrationCam::Init(const MGeomCam &geom) 199 { 200 InitSize (geom.GetNumPixels() ); 201 InitAverageAreas (geom.GetNumAreas() ); 202 InitAverageSectors(geom.GetNumSectors()); 203 } 204 198 205 // -------------------------------------------------------------------------- 199 206 // -
trunk/MagicSoft/Mars/mcalib/MCalibrationCam.h
r3646 r3667 14 14 class MBadPixelsPix; 15 15 class MBadPixelsCam; 16 class MGeomCam; 17 16 18 class MCalibrationCam : public MParContainer, public MCamEvent 17 19 { … … 31 33 32 34 virtual void Clear( Option_t *o="" ); 35 void Init(const MGeomCam &geom); 33 36 void InitSize( const UInt_t i ); 34 37 void InitAverageAreas( const UInt_t i ); -
trunk/MagicSoft/Mars/mcalib/MHCalibrationCam.cc
r3650 r3667 639 639 { 640 640 641 for ( Int_t j=0; j<fGeom->GetNumAreas(); j++)641 for (UInt_t j=0; j<fGeom->GetNumAreas(); j++) 642 642 { 643 643 -
trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeCam.cc
r3650 r3667 387 387 } 388 388 389 const Int_t npixels = fGeom->GetNumPixels();390 const Int_t nareas = fGeom->GetNumAreas();391 const Int_t nsectors = fGeom->GetNumSectors();392 const Int_t lofirst = signal->GetFirstUsedSliceLoGain();389 const UInt_t npixels = fGeom->GetNumPixels(); 390 const UInt_t nareas = fGeom->GetNumAreas(); 391 const UInt_t nsectors = fGeom->GetNumSectors(); 392 const UInt_t lofirst = signal->GetFirstUsedSliceLoGain(); 393 393 394 394 Float_t sumhiarea [nareas], sumloarea [nareas], timehiarea [nareas], timeloarea [nareas]; … … 410 410 411 411 412 for ( Int_t i=0; i<npixels; i++)412 for (UInt_t i=0; i<npixels; i++) 413 413 { 414 414 -
trunk/MagicSoft/Mars/mcalib/MHCalibrationRelTimeCam.cc
r3653 r3667 297 297 } 298 298 299 const Int_t npixels = fGeom->GetNumPixels();300 const Int_t nareas = fGeom->GetNumAreas();301 const Int_t nsectors = fGeom->GetNumSectors();299 const UInt_t npixels = fGeom->GetNumPixels(); 300 const UInt_t nareas = fGeom->GetNumAreas(); 301 const UInt_t nsectors = fGeom->GetNumSectors(); 302 302 303 303 Float_t sumareahi [nareas], sumarealo [nareas];
Note:
See TracChangeset
for help on using the changeset viewer.