Changeset 2049


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

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2048 r2049  
    11                                                 -*-*- END OF LINE -*-*-
     2
     3
     4 2003/04/30: Wolfgang Wittek
     5
     6   * manalysis/MPadSchweizer.[h,cc]
     7     - reorder histograms
     8
     9   * mhist/MHSigmaTheta.[h,cc]
     10     - remove last 3 plots (otherwise get segmentation violation ???)
     11
     12   * mimage/MHNewImagePar.[h,cc]
     13     - change range of leakage to be plotted
     14       (want to see also leakage=0)
     15
     16
    217
    318 2003/04/30: Nadia Tonello
     
    924        void   SetPixelUsed()  { fRing = 1;}
    1025        void   SetPixelUnused(){ fRing = 0;}
     26
    1127
    1228
  • trunk/MagicSoft/Mars/manalysis/MPadSchweizer.cc

    r2025 r2049  
    689689    l1->SetBit(kCanDelete);;
    690690
    691     c.cd(6);
     691    c.cd(8);
    692692    TH2D *l2;
    693693    l2 = (TH2D*) ((TH3*)fHDiffPixTheta)->Project3D("zy");
     
    703703    // draw the 3D histogram (input): Theta, pixel, Sigma
    704704
    705     c.cd(8);
     705    c.cd(6);
    706706    TH2D *k1;
    707707    k1 = (TH2D*) ((TH3*)fHSigmaPixTheta)->Project3D("zx");
  • 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);
  • trunk/MagicSoft/Mars/mimage/MHNewImagePar.cc

    r2043 r2049  
    176176    gPad->SetBorderMode(0);
    177177    TAxis &x = *fHistLeakage1.GetXaxis();
    178     x.SetRangeUser(0.01, x.GetXmax());
     178    x.SetRangeUser(0.0, x.GetXmax());
    179179    MH::Draw(fHistLeakage1, fHistLeakage2, "Leakage1 and Leakage2");
    180180
Note: See TracChangeset for help on using the changeset viewer.