Ignore:
Timestamp:
11/20/04 13:41:51 (20 years ago)
Author:
wittek
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MPad.cc

    r5436 r5437  
    503503  } 
    504504
    505   *fLog << "hist2patternin = "  << hist2patternin << endl;
    506   *fLog << "hist2patternout = " << hist2patternout << endl;
    507   *fLog << "hist3pattern = " << hist3pattern << endl;
     505  //*fLog << "hist2patternin = "  << hist2patternin << endl;
     506  //*fLog << "hist2patternout = " << hist2patternout << endl;
     507  //*fLog << "hist3pattern = " << hist3pattern << endl;
    508508
    509509
    510510  TAxis *axs = hist2patternin->GetXaxis();
    511511  Int_t nbinsthetas = axs->GetNbins();
    512   *fLog << "vor fHSigmaTheta : nbinsthetas = " << nbinsthetas << endl;
     512  //*fLog << "vor fHSigmaTheta : nbinsthetas = " << nbinsthetas << endl;
    513513
    514514  TArrayD edgess;
     
    517517  {
    518518    edgess[i] = axs->GetBinLowEdge(i+1);
    519     *fLog << all << "i, theta low edge = " << i << ",  " << edgess[i]
    520           << endl;
     519    //*fLog << all << "i, theta low edge = " << i << ",  " << edgess[i]
     520    //      << endl;
    521521  }
    522522
     
    912912  // write the target padding histograms onto a file  ---------
    913913  WritePaddingDist(fileout);     
     914
     915  //-------------------------------------------------------
     916  TCanvas *pad = MH::MakeDefCanvas("target", "target", 600, 300);
     917  gROOT->SetSelectedPad(NULL);
     918
     919  pad->Divide(2, 1);
     920
     921  pad->cd(1);
     922  gPad->SetBorderMode(0);
     923  fHSigmaTheta->SetDirectory(NULL);
     924  fHSigmaTheta->UseCurrentStyle();
     925  fHSigmaTheta->DrawClone();
     926  fHSigmaTheta->SetBit(kCanDelete);   
     927
     928  pad->cd(2);
     929  gPad->SetBorderMode(0);
     930  fHSigmaThetaOuter->SetDirectory(NULL);
     931  fHSigmaThetaOuter->UseCurrentStyle();
     932  fHSigmaThetaOuter->DrawClone();
     933  fHSigmaThetaOuter->SetBit(kCanDelete);   
     934
     935  pad->Draw();
    914936
    915937  return kTRUE;
Note: See TracChangeset for help on using the changeset viewer.