Changeset 5482 for trunk/MagicSoft/Mars/mhcalib
- Timestamp:
- 11/27/04 13:29:14 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mhcalib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhcalib/MHCalibrationCam.cc
r5460 r5482 1176 1176 } 1177 1177 1178 hist.Renorm();1179 1178 // 1180 1179 // 4) Check for oscillations -
trunk/MagicSoft/Mars/mhcalib/MHPedestalCam.cc
r5471 r5482 123 123 const Axis_t MHPedestalCam::fgFirst = -50.; 124 124 const Axis_t MHPedestalCam::fgLast = 50.; 125 const T ObjString MHPedestalCam::gsHistName = "Pedestal";126 const T ObjString MHPedestalCam::gsHistTitle = "Pedestal";127 const T ObjString MHPedestalCam::gsHistXTitle = "Charge [FADC slices]";128 const T ObjString MHPedestalCam::gsHistYTitle = "Nr. events";125 const TString MHPedestalCam::gsHistName = "Pedestal"; 126 const TString MHPedestalCam::gsHistTitle = "Pedestal"; 127 const TString MHPedestalCam::gsHistXTitle = "Charge [FADC slices]"; 128 const TString MHPedestalCam::gsHistYTitle = "Nr. events"; 129 129 // -------------------------------------------------------------------------- 130 130 // … … 160 160 SetLast (fgLast ); 161 161 162 SetHistName (gsHistName . GetName());163 SetHistTitle (gsHistTitle . GetName());164 SetHistXTitle(gsHistXTitle. GetName());165 SetHistYTitle(gsHistYTitle. GetName());162 SetHistName (gsHistName .Data()); 163 SetHistTitle (gsHistTitle .Data()); 164 SetHistXTitle(gsHistXTitle.Data()); 165 SetHistYTitle(gsHistYTitle.Data()); 166 166 } 167 167 -
trunk/MagicSoft/Mars/mhcalib/MHPedestalCam.h
r5471 r5482 25 25 static const Axis_t fgLast; //! Default upper histogram limit (now set to: 50. ) 26 26 27 static const T ObjString gsHistName; //! Default Histogram names28 static const T ObjString gsHistTitle; //! Default Histogram titles29 static const T ObjString gsHistXTitle; //! Default Histogram x-axis titles30 static const T ObjString gsHistYTitle; //! Default Histogram y-axis titles27 static const TString gsHistName; //! Default Histogram names 28 static const TString gsHistTitle; //! Default Histogram titles 29 static const TString gsHistXTitle; //! Default Histogram x-axis titles 30 static const TString gsHistYTitle; //! Default Histogram y-axis titles 31 31 32 32 ULong_t fNumEvents; // Number of processed events
Note:
See TracChangeset
for help on using the changeset viewer.