Changeset 5985
- Timestamp:
- 01/25/05 10:27:48 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5984 r5985 21 21 -*-*- END OF LINE -*-*- 22 22 23 2005/01/25 Thomas Bretz 24 25 * mcalib/MCalibrationIntensityChargeCam.cc: 26 - fixed a lot of 'default argument'-warnings to make to code 27 compile 28 29 30 23 31 2005/01/25 Markus Gaug 24 32 … … 30 38 * mcalib/MCalibrationChargeCalc.cc 31 39 - ensure to set the color correctly in MCalibrationBlindCam 40 41 32 42 33 43 2005/01/24 Abelardo Moralejo … … 38 48 this, for the last week you may have found trouble running 39 49 starmc.C and mccalibrate.C. 50 51 40 52 41 53 2005/01/24 Thomas Bretz -
trunk/MagicSoft/Mars/mcalib/MCalibrationIntensityChargeCam.cc
r5982 r5985 1078 1078 1079 1079 } 1080 void MCalibrationIntensityChargeCam::DrawPheVsCharge( const UInt_t pixid, const MCalibrationCam::PulserColor_t col =MCalibrationCam::kNONE)1080 void MCalibrationIntensityChargeCam::DrawPheVsCharge( const UInt_t pixid, const MCalibrationCam::PulserColor_t col) 1081 1081 { 1082 1082 TGraphErrors *gr = GetPheVsCharge(pixid,col); 1083 1083 gr->Draw("A*"); 1084 1084 } 1085 void MCalibrationIntensityChargeCam::DrawPhePerCharge( const UInt_t pixid, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col =MCalibrationCam::kNONE)1085 void MCalibrationIntensityChargeCam::DrawPhePerCharge( const UInt_t pixid, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col) 1086 1086 { 1087 1087 TGraphErrors *gr = GetPhePerCharge(pixid,geom,col); 1088 1088 gr->Draw("A*"); 1089 1089 } 1090 void MCalibrationIntensityChargeCam::DrawPhePerChargePerArea( const Int_t aidx, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col =MCalibrationCam::kNONE)1090 void MCalibrationIntensityChargeCam::DrawPhePerChargePerArea( const Int_t aidx, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col) 1091 1091 { 1092 1092 TGraphErrors *gr = GetPhePerChargePerArea(aidx,geom,col); 1093 1093 gr->Draw("A*"); 1094 1094 } 1095 void MCalibrationIntensityChargeCam::DrawPheVsChargePerArea( const Int_t aidx, const MCalibrationCam::PulserColor_t col =MCalibrationCam::kNONE)1095 void MCalibrationIntensityChargeCam::DrawPheVsChargePerArea( const Int_t aidx, const MCalibrationCam::PulserColor_t col) 1096 1096 { 1097 1097 TGraphErrors *gr = GetPheVsChargePerArea(aidx,col); … … 1114 1114 gr->Draw("A*"); 1115 1115 } 1116 void MCalibrationIntensityChargeCam::DrawPhotVsTime( const Option_t *method ="FFactor")1116 void MCalibrationIntensityChargeCam::DrawPhotVsTime( const Option_t *method) 1117 1117 { 1118 1118 TGraphErrors *gr = GetPhotVsTime(method);
Note:
See TracChangeset
for help on using the changeset viewer.