Changeset 4317 for trunk/MagicSoft/Mars
- Timestamp:
- 06/22/04 09:39:29 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4314 r4317 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2004/06/18: Markus Gaug 22 23 * manalysis/MHPedestalCam.[h,cc] 24 - use flag to choose if one wants to re-normalize the histogram 25 results 26 20 27 21 28 2004/06/17: Markus Gaug -
trunk/MagicSoft/Mars/manalysis/MHPedestalCam.cc
r4277 r4317 124 124 // - fExtractLoGainSlices to 0. 125 125 // - the event frequency to 1200 Hz. 126 // - the fRenorm flag to kTRUE 126 127 // 127 128 MHPedestalCam::MHPedestalCam(const char *name, const char *title) … … 132 133 133 134 SetPulserFrequency(1200); 135 SetRenorm(); 134 136 } 135 137 … … 240 242 241 243 if ((*fBadPixels)[i].IsBad()) 242 { 243 (*this)[i].SetExcluded(); 244 } 244 (*this)[i].SetExcluded(); 245 245 246 (*fPedestals)[i].InitUseHists(); 246 247 } … … 353 354 hist.ChangeHistId(i); 354 355 hist.SetEventFrequency(fPulserFrequency); 355 hist.SetNSlices(nslices); 356 357 if (fRenorm) 358 hist.SetNSlices(nslices); 359 356 360 hist.SetProbLimit(0.); 357 361 -
trunk/MagicSoft/Mars/manalysis/MHPedestalCam.h
r3643 r4317 23 23 Float_t fExtractLoGainSlices; // Number of FADC slices used for low gain signal extraction 24 24 25 Bool_t fRenorm; 26 25 27 MPedestalCam *fPedestals; //! Pedestal Cam filled by MPedCalcPedRun 26 28 … … 32 34 void DrawPixelContent(Int_t idx) const; 33 35 36 void SetRenorm( const Bool_t b=kTRUE ) { fRenorm = b; } 37 34 38 ClassDef(MHPedestalCam, 1) // Histogram class for Charge Camera Pedestals 35 39 }; -
trunk/MagicSoft/Mars/manalysis/MHPedestalPix.cc
r4277 r4317 74 74 // 75 75 MHPedestalPix::MHPedestalPix(const char *name, const char *title) 76 : fNSlices(1 )76 : fNSlices(1.) 77 77 { 78 78
Note:
See TracChangeset
for help on using the changeset viewer.