Changeset 6096 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
01/28/05 17:18:31 (20 years ago)
Author:
mazin
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mcalib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibrationIntensityChargeCam.cc

    r5997 r6096  
    5252#include "MHCamera.h"
    5353
     54#include "MGeomCamMagic.h"
    5455#include "MGeomCam.h"
    5556#include "MGeomPix.h"
     
    10851086  gr->Draw("A*");
    10861087}
    1087 void MCalibrationIntensityChargeCam::DrawPhePerCharge( const UInt_t pixid, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col)
    1088 {
    1089   TGraphErrors *gr = GetPhePerCharge(pixid,geom,col);
     1088void MCalibrationIntensityChargeCam::DrawPhePerCharge( const UInt_t pixid, const MCalibrationCam::PulserColor_t col)
     1089{
     1090  TGraphErrors *gr = GetPhePerCharge(pixid,MGeomCamMagic(),col);
    10901091  gr->SetBit(kCanDelete);
    10911092  gr->Draw("A*");
    10921093}
    1093 void MCalibrationIntensityChargeCam::DrawPhePerChargePerArea( const Int_t aidx, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col)
    1094 {
    1095   TGraphErrors *gr = GetPhePerChargePerArea(aidx,geom,col);
     1094void MCalibrationIntensityChargeCam::DrawPhePerChargePerArea( const Int_t aidx, const MCalibrationCam::PulserColor_t col)
     1095{
     1096  TGraphErrors *gr = GetPhePerChargePerArea(aidx,MGeomCamMagic(),col);
    10961097  gr->SetBit(kCanDelete);
    10971098  gr->Draw("A*");
     
    11031104  gr->Draw("A*");
    11041105}
    1105 void MCalibrationIntensityChargeCam::DrawRazmikPlotResults( const Int_t aidx, const MGeomCam &geom )
    1106 {
    1107   TH2F *h = GetRazmikPlotResults(aidx,geom );
     1106void MCalibrationIntensityChargeCam::DrawRazmikPlotResults( const Int_t aidx)
     1107{
     1108  TH2F *h = GetRazmikPlotResults(aidx,MGeomCamMagic());
    11081109  h->SetBit(kCanDelete);
    11091110  h->Draw();
    11101111}
    11111112
    1112 void MCalibrationIntensityChargeCam::DrawChargePerAreaVsTime( const Int_t aidx, const MGeomCam &geom )
    1113 {
    1114   TGraphErrors *gr = GetChargePerAreaVsTime(aidx,geom );
     1113void MCalibrationIntensityChargeCam::DrawChargePerAreaVsTime( const Int_t aidx)
     1114{
     1115  TGraphErrors *gr = GetChargePerAreaVsTime(aidx,MGeomCamMagic());
    11151116  gr->SetBit(kCanDelete);
    11161117  gr->Draw("A*");
    11171118}
    1118 void MCalibrationIntensityChargeCam::DrawPhePerAreaVsTime( const Int_t aidx, const MGeomCam &geom )
    1119 {
    1120   TGraphErrors *gr = GetPhePerAreaVsTime(aidx,geom );
     1119void MCalibrationIntensityChargeCam::DrawPhePerAreaVsTime( const Int_t aidx)
     1120{
     1121  TGraphErrors *gr = GetPhePerAreaVsTime(aidx,MGeomCamMagic());
    11211122  gr->SetBit(kCanDelete);
    11221123  gr->Draw("A*");
     
    11291130}
    11301131
    1131 void MCalibrationIntensityChargeCam::DrawVarPerAreaVsTime( const Int_t aidx, const MGeomCam &geom, const Option_t *varname )
    1132 {
    1133   TGraphErrors *gr = GetVarPerAreaVsTime(aidx,geom,varname );
     1132void MCalibrationIntensityChargeCam::DrawVarPerAreaVsTime( const Int_t aidx, const Option_t *varname )
     1133{
     1134  TGraphErrors *gr = GetVarPerAreaVsTime(aidx,MGeomCamMagic(),varname );
    11341135  gr->SetBit(kCanDelete);
    11351136  gr->Draw("A*");
     
    11411142  gr->Draw("A*");
    11421143}
    1143 void MCalibrationIntensityChargeCam::DrawVarFluctuations( const Int_t aidx, const MGeomCam &geom, const Option_t *varname)
    1144 {
    1145   TH1F *h = GetVarFluctuations( aidx, geom,varname);
     1144void MCalibrationIntensityChargeCam::DrawVarFluctuations( const Int_t aidx, const Option_t *varname)
     1145{
     1146  TH1F *h = GetVarFluctuations( aidx,MGeomCamMagic(),varname);
    11461147  h->SetBit(kCanDelete);
    11471148  h->Draw();
  • trunk/MagicSoft/Mars/mcalib/MCalibrationIntensityChargeCam.h

    r5982 r6096  
    4949  // Draws
    5050  void DrawRazmikPlot( const UInt_t pixid );
    51   void DrawPheVsCharge( const UInt_t pixid, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE);                             // *MENU*
    52   void DrawPhePerCharge( const UInt_t pixid, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE);      // *MENU*
    53   void DrawPhePerChargePerArea( const Int_t aidx, const MGeomCam &geom, 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, 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*
    5656
    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*
    6060
    61   void DrawVarPerAreaVsTime( const Int_t aidx, const MGeomCam &geom, 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 MGeomCam &geom, const Option_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*
    6464 
    6565
Note: See TracChangeset for help on using the changeset viewer.