Changeset 6096 for trunk/MagicSoft/Mars
- Timestamp:
- 01/28/05 17:18:31 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationIntensityChargeCam.cc
r5997 r6096 52 52 #include "MHCamera.h" 53 53 54 #include "MGeomCamMagic.h" 54 55 #include "MGeomCam.h" 55 56 #include "MGeomPix.h" … … 1085 1086 gr->Draw("A*"); 1086 1087 } 1087 void MCalibrationIntensityChargeCam::DrawPhePerCharge( const UInt_t pixid, const M GeomCam &geom, const MCalibrationCam::PulserColor_t col)1088 { 1089 TGraphErrors *gr = GetPhePerCharge(pixid, geom,col);1088 void MCalibrationIntensityChargeCam::DrawPhePerCharge( const UInt_t pixid, const MCalibrationCam::PulserColor_t col) 1089 { 1090 TGraphErrors *gr = GetPhePerCharge(pixid,MGeomCamMagic(),col); 1090 1091 gr->SetBit(kCanDelete); 1091 1092 gr->Draw("A*"); 1092 1093 } 1093 void MCalibrationIntensityChargeCam::DrawPhePerChargePerArea( const Int_t aidx, const M GeomCam &geom, const MCalibrationCam::PulserColor_t col)1094 { 1095 TGraphErrors *gr = GetPhePerChargePerArea(aidx, geom,col);1094 void MCalibrationIntensityChargeCam::DrawPhePerChargePerArea( const Int_t aidx, const MCalibrationCam::PulserColor_t col) 1095 { 1096 TGraphErrors *gr = GetPhePerChargePerArea(aidx,MGeomCamMagic(),col); 1096 1097 gr->SetBit(kCanDelete); 1097 1098 gr->Draw("A*"); … … 1103 1104 gr->Draw("A*"); 1104 1105 } 1105 void MCalibrationIntensityChargeCam::DrawRazmikPlotResults( const Int_t aidx , const MGeomCam &geom)1106 { 1107 TH2F *h = GetRazmikPlotResults(aidx, geom);1106 void MCalibrationIntensityChargeCam::DrawRazmikPlotResults( const Int_t aidx) 1107 { 1108 TH2F *h = GetRazmikPlotResults(aidx,MGeomCamMagic()); 1108 1109 h->SetBit(kCanDelete); 1109 1110 h->Draw(); 1110 1111 } 1111 1112 1112 void MCalibrationIntensityChargeCam::DrawChargePerAreaVsTime( const Int_t aidx , const MGeomCam &geom)1113 { 1114 TGraphErrors *gr = GetChargePerAreaVsTime(aidx, geom);1113 void MCalibrationIntensityChargeCam::DrawChargePerAreaVsTime( const Int_t aidx) 1114 { 1115 TGraphErrors *gr = GetChargePerAreaVsTime(aidx,MGeomCamMagic()); 1115 1116 gr->SetBit(kCanDelete); 1116 1117 gr->Draw("A*"); 1117 1118 } 1118 void MCalibrationIntensityChargeCam::DrawPhePerAreaVsTime( const Int_t aidx , const MGeomCam &geom)1119 { 1120 TGraphErrors *gr = GetPhePerAreaVsTime(aidx, geom);1119 void MCalibrationIntensityChargeCam::DrawPhePerAreaVsTime( const Int_t aidx) 1120 { 1121 TGraphErrors *gr = GetPhePerAreaVsTime(aidx,MGeomCamMagic()); 1121 1122 gr->SetBit(kCanDelete); 1122 1123 gr->Draw("A*"); … … 1129 1130 } 1130 1131 1131 void MCalibrationIntensityChargeCam::DrawVarPerAreaVsTime( const Int_t aidx, const MGeomCam &geom, constOption_t *varname )1132 { 1133 TGraphErrors *gr = GetVarPerAreaVsTime(aidx, geom,varname );1132 void MCalibrationIntensityChargeCam::DrawVarPerAreaVsTime( const Int_t aidx, const Option_t *varname ) 1133 { 1134 TGraphErrors *gr = GetVarPerAreaVsTime(aidx,MGeomCamMagic(),varname ); 1134 1135 gr->SetBit(kCanDelete); 1135 1136 gr->Draw("A*"); … … 1141 1142 gr->Draw("A*"); 1142 1143 } 1143 void MCalibrationIntensityChargeCam::DrawVarFluctuations( const Int_t aidx, const MGeomCam &geom, constOption_t *varname)1144 { 1145 TH1F *h = GetVarFluctuations( aidx, geom,varname);1144 void MCalibrationIntensityChargeCam::DrawVarFluctuations( const Int_t aidx, const Option_t *varname) 1145 { 1146 TH1F *h = GetVarFluctuations( aidx,MGeomCamMagic(),varname); 1146 1147 h->SetBit(kCanDelete); 1147 1148 h->Draw(); -
trunk/MagicSoft/Mars/mcalib/MCalibrationIntensityChargeCam.h
r5982 r6096 49 49 // Draws 50 50 void DrawRazmikPlot( const UInt_t pixid ); 51 void DrawPheVsCharge( const UInt_t pixid, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE); 52 void DrawPhePerCharge( const UInt_t pixid, const M GeomCam &geom, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE); // *MENU*53 void DrawPhePerChargePerArea( const Int_t aidx, const M GeomCam &geom, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE); // *MENU*54 void DrawPheVsChargePerArea( const Int_t aidx, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE); 55 void DrawRazmikPlotResults( const Int_t aidx , const MGeomCam &geom); // *MENU*51 void DrawPheVsCharge( const UInt_t pixid, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE); // *MENU* 52 void DrawPhePerCharge( const UInt_t pixid, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE); // *MENU* 53 void DrawPhePerChargePerArea( const Int_t aidx, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE); // *MENU* 54 void DrawPheVsChargePerArea( const Int_t aidx, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE); // *MENU* 55 void DrawRazmikPlotResults( const Int_t aidx ); // *MENU* 56 56 57 void DrawChargePerAreaVsTime( const Int_t aidx , const MGeomCam &geom );// *MENU*58 void DrawPhePerAreaVsTime( const Int_t aidx , const MGeomCam &geom); // *MENU*59 void DrawPhotVsTime( const Option_t *method="FFactor" );// *MENU*57 void DrawChargePerAreaVsTime( const Int_t aidx); // *MENU* 58 void DrawPhePerAreaVsTime( const Int_t aidx ); // *MENU* 59 void DrawPhotVsTime( const Option_t *method="FFactor"); // *MENU* 60 60 61 void DrawVarPerAreaVsTime( const Int_t aidx, const MGeomCam &geom, constOption_t *varname ); // *MENU*62 void DrawVarVsTime( const Int_t pixid , const Option_t *varname ); 63 void DrawVarFluctuations( const Int_t aidx, const MGeomCam &geom, constOption_t *varname); // *MENU*61 void DrawVarPerAreaVsTime( const Int_t aidx, const Option_t *varname ); // *MENU* 62 void DrawVarVsTime( const Int_t pixid , const Option_t *varname ); // *MENU* 63 void DrawVarFluctuations( const Int_t aidx, const Option_t *varname); // *MENU* 64 64 65 65
Note:
See TracChangeset
for help on using the changeset viewer.