Changeset 7349 for trunk/MagicSoft/Mars/msignal
- Timestamp:
- 09/12/05 16:35:04 (19 years ago)
- Location:
- trunk/MagicSoft/Mars/msignal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/msignal/MSignalCam.cc
r7297 r7349 252 252 Float_t testval = pix.GetNumPhotons()/pix.GetErrorPhot(); 253 253 if (geom) 254 testval *= TMath::Sqrt(geom->GetPixRatio(i/*pix.GetPixId()*/));254 testval *= geom->GetPixRatioSqrt(i/*pix.GetPixId()*/); 255 255 256 256 if (testval < minval) … … 280 280 Float_t testval = pix.GetNumPhotons()/pix.GetErrorPhot(); 281 281 if (geom) 282 testval *= TMath::Sqrt(geom->GetPixRatio(i/*pix.GetPixId()*/));282 testval *= geom->GetPixRatioSqrt(i/*pix.GetPixId()*/); 283 283 284 284 if (testval > maxval) -
trunk/MagicSoft/Mars/msignal/MSignalCam.h
r6856 r7349 46 46 } 47 47 48 // Setter functions for use in image cleaning classes only 49 void SetSinglePixels(Short_t num, Float_t size) { fNumSinglePixels=num; fSizeSinglePixels=size; } 50 void SetNumPixelsSaturated(UInt_t hi, UInt_t lo) { fNumPixelsSaturatedHiGain=hi;fNumPixelsSaturatedLoGain=lo; } 51 48 52 // Getter functions 49 53 UInt_t GetNumPixels() const { return fPixels->GetEntriesFast(); } … … 55 59 Int_t GetNumPixelsSaturatedHiGain() const { return fNumPixelsSaturatedHiGain; } 56 60 Int_t GetNumPixelsSaturatedLoGain() const { return fNumPixelsSaturatedLoGain; } 57 58 // Setter functions for use in image cleaning classes only59 void SetSinglePixels(Short_t num, Float_t size) { fNumSinglePixels=num; fSizeSinglePixels=size; }60 void SetNumPixelsSaturated(UInt_t hi, UInt_t lo) { fNumPixelsSaturatedHiGain=hi;fNumPixelsSaturatedLoGain=lo; }61 61 62 62 Bool_t IsPixelExisting(Int_t id) const;
Note:
See TracChangeset
for help on using the changeset viewer.