Ignore:
Timestamp:
04/30/03 15:39:34 (22 years ago)
Author:
wittek
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhist
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MHSigmaTheta.cc

    r2043 r2049  
    7272    fSigmaTheta.SetDirectory(NULL);
    7373    fSigmaTheta.SetName("2D-ThetaSigmabar");
    74     fSigmaTheta.SetTitle("2D: \\bar{\\sigma}_{ped}, \\Theta");
     74    fSigmaTheta.SetTitle("2D: Sigmabar, \\Theta");
    7575    fSigmaTheta.SetXTitle("\\Theta [\\circ]");
    76     fSigmaTheta.SetYTitle("\\bar{\\Theta}");
     76    fSigmaTheta.SetYTitle("Sigmabar");
    7777
    7878    fSigmaPixTheta.SetDirectory(NULL);
    7979    fSigmaPixTheta.SetName("3D-ThetaPixSigma");
    80     fSigmaPixTheta.SetTitle("3D : \\Theta, Pixel Id, \\sigma_{ped}");
     80    fSigmaPixTheta.SetTitle("3D : \\Theta, Pixel Id, Sigma");
    8181    fSigmaPixTheta.SetXTitle("\\Theta [\\circ]");
    8282    fSigmaPixTheta.SetYTitle("Pixel Id");
    83     fSigmaPixTheta.SetZTitle("\\sigma_{ped}");
     83    fSigmaPixTheta.SetZTitle("Sigma");
    8484
    8585    fDiffPixTheta.SetDirectory(NULL);
    8686    fDiffPixTheta.SetName("3D-ThetaPixDiff");
    87     fDiffPixTheta.SetTitle("3D : \\Theta, Pixel Id, \\sigma_{ped}^{2}-\\bar{\\sigma}^{2}");
     87    fDiffPixTheta.SetTitle("3D : \\Theta, Pixel Id, Sigma^2-Sigmabar^2");
    8888    fDiffPixTheta.SetXTitle("\\Theta [\\circ]");
    8989    fDiffPixTheta.SetYTitle("Pixel Id");
    90     fDiffPixTheta.SetZTitle("\\sigma_{ped}^{2}-\\bar{\\sigma}^{2}");
     90    fDiffPixTheta.SetZTitle("Sigma^2-Sigmabar^2");
     91}
     92// --------------------------------------------------------------------------
     93//
     94// Default Destructor
     95//
     96MHSigmaTheta::~MHSigmaTheta()
     97{
     98  *fLog << "MHSigmaTheta::~MHSigmaTheta was called" << endl;
    9199}
    92100
     
    218226    AppendPad("");
    219227
    220     pad->Divide(3, 3);
     228    pad->Divide(3, 2);
    221229
    222230    // draw the 2D histogram Sigmabar versus Theta
     
    278286    h->SetBit(kCanDelete);
    279287
    280     pad->cd(7);
    281     fSigmaTheta.Draw(opt);
    282 
    283     pad->cd(8);
    284     fDiffPixTheta.Draw(opt);
    285 
    286     pad->cd(9);
    287     fSigmaPixTheta.Draw(opt);
    288 }
     288    //pad->cd(7);
     289    //fSigmaTheta.Draw(opt);
     290
     291    //pad->cd(8);
     292    //fDiffPixTheta.Draw(opt);
     293
     294    //pad->cd(9);
     295    //fSigmaPixTheta.Draw(opt);
     296}
     297
     298
     299
     300
     301
     302
     303
     304
     305
  • trunk/MagicSoft/Mars/mhist/MHSigmaTheta.h

    r2043 r2049  
    4040public:
    4141    MHSigmaTheta(const char *name=NULL, const char *title=NULL);
     42    ~MHSigmaTheta();
    4243
    4344    Bool_t SetupFill(const MParList *plist);
Note: See TracChangeset for help on using the changeset viewer.