Changeset 5985


Ignore:
Timestamp:
01/25/05 10:27:48 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5984 r5985  
    2121                                                 -*-*- END OF LINE -*-*-
    2222
     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
    2331 2005/01/25 Markus Gaug
    2432
     
    3038   * mcalib/MCalibrationChargeCalc.cc
    3139     - ensure to set the color correctly in MCalibrationBlindCam
     40
     41
    3242
    3343 2005/01/24 Abelardo Moralejo
     
    3848       this, for the last week you may have found trouble running
    3949       starmc.C and mccalibrate.C.
     50
     51
    4052
    4153 2005/01/24 Thomas Bretz
  • trunk/MagicSoft/Mars/mcalib/MCalibrationIntensityChargeCam.cc

    r5982 r5985  
    10781078
    10791079}
    1080 void MCalibrationIntensityChargeCam::DrawPheVsCharge( const UInt_t pixid, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE)
     1080void MCalibrationIntensityChargeCam::DrawPheVsCharge( const UInt_t pixid, const MCalibrationCam::PulserColor_t col)
    10811081{
    10821082  TGraphErrors *gr = GetPheVsCharge(pixid,col);
    10831083  gr->Draw("A*");
    10841084}
    1085 void MCalibrationIntensityChargeCam::DrawPhePerCharge( const UInt_t pixid, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE)
     1085void MCalibrationIntensityChargeCam::DrawPhePerCharge( const UInt_t pixid, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col)
    10861086{
    10871087  TGraphErrors *gr = GetPhePerCharge(pixid,geom,col);
    10881088  gr->Draw("A*");
    10891089}
    1090 void MCalibrationIntensityChargeCam::DrawPhePerChargePerArea( const Int_t aidx, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE)
     1090void MCalibrationIntensityChargeCam::DrawPhePerChargePerArea( const Int_t aidx, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col)
    10911091{
    10921092  TGraphErrors *gr = GetPhePerChargePerArea(aidx,geom,col);
    10931093  gr->Draw("A*");
    10941094}
    1095 void MCalibrationIntensityChargeCam::DrawPheVsChargePerArea( const Int_t aidx, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE)
     1095void MCalibrationIntensityChargeCam::DrawPheVsChargePerArea( const Int_t aidx, const MCalibrationCam::PulserColor_t col)
    10961096{
    10971097  TGraphErrors *gr = GetPheVsChargePerArea(aidx,col);
     
    11141114  gr->Draw("A*");
    11151115}
    1116 void MCalibrationIntensityChargeCam::DrawPhotVsTime( const Option_t *method="FFactor" )
     1116void MCalibrationIntensityChargeCam::DrawPhotVsTime( const Option_t *method)
    11171117{
    11181118  TGraphErrors *gr = GetPhotVsTime(method);
Note: See TracChangeset for help on using the changeset viewer.