Changeset 5050 for trunk/MagicSoft
- Timestamp:
- 09/15/04 22:58:42 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mhcalib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhcalib/MHCalibrationChargeBlindCam.cc
r5049 r5050 92 92 fTitle = title ? title : "Class to fille the blind pixel histograms"; 93 93 94 SetFitFunc();95 94 SetSPheCut(); 96 95 … … 108 107 SetOscillations(kFALSE); 109 108 SetSizeCheck (kFALSE); 109 110 SetFitFunc(MHCalibrationChargeBlindPix::kEPoisson4); 110 111 } 111 112 -
trunk/MagicSoft/Mars/mhcalib/MHCalibrationChargeBlindCam.h
r5049 r5050 27 27 static const TString gsHistXTitle; //! Default Histogram x-axis titles 28 28 static const TString gsHistYTitle; //! Default Histogram y-axis titles 29 static const MHCalibrationChargeBlindPix::FitFunc_t fgFitFunc 30 = MHCalibrationChargeBlindPix::kEPoisson4; //! Default for fFitFunc 31 29 32 30 Axis_t fSPheCut; // Signal value upon which event considered as single-phe 33 31 34 32 MRawEvtData *fRawEvt; //! Raw event data 35 33 36 MHCalibrationChargeBlindPix::FitFunc_t fFitFunc; 34 MHCalibrationChargeBlindPix::FitFunc_t fFitFunc; // The actual fit function type 37 35 38 36 Bool_t SetupHists (const MParList *pList ); … … 54 52 // Draw 55 53 void Draw(Option_t *opt=""); 56 void SetFitFunc( const MHCalibrationChargeBlindPix::FitFunc_t func =fgFitFunc) { fFitFunc = func; }54 void SetFitFunc( const MHCalibrationChargeBlindPix::FitFunc_t func ) { fFitFunc = func; } 57 55 void SetSPheCut( const Axis_t a =fgSPheCut ) { fSPheCut = a; } 58 56 -
trunk/MagicSoft/Mars/mhcalib/MHCalibrationChargeBlindPix.h
r5049 r5050 64 64 enum FitFunc_t { kEPoisson4, kEPoisson5, 65 65 kEPoisson6, kEPoisson7, 66 kEPolya, kEMichele }; // Possible fit functions types (see MHCalibrationChargeBlindPix)66 kEPolya, kEMichele }; // Possible fit functions types 67 67 68 68 private:
Note:
See TracChangeset
for help on using the changeset viewer.