Ignore:
Timestamp:
07/07/03 16:22:51 (21 years ago)
Author:
moralejo
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhistmc/MHMcCT1CollectionArea.cc

    r2261 r2268  
    6666  fTitle = title ? title : "Collection Area vs. log10 Energy";
    6767
     68  fEaxis = kLog10Energy;
     69
    6870  fHistAll = new TH2D;
    6971  fHistSel = new TH2D;
     
    9395  fHistCol->SetYTitle("theta [deg]");
    9496  fHistCol->SetZTitle("A [m^{2}]");
     97
    9598}
    9699
     
    130133    fHistCol->Sumw2();
    131134
     135    if (fEaxis == kEnergy)
     136      {
     137        fTitle = "Collection Area vs. Energy";
     138        fHistCol->SetTitle(fTitle);
     139        fHistAll->SetTitle("All showers - Theta vs Energy distribution");
     140        fHistSel->SetTitle("Selected showers - Theta vs Energy distribution");
     141        fHistCol->SetXTitle("E [GeV]");
     142        fHistAll->SetXTitle("E [GeV]");
     143        fHistSel->SetXTitle("E [GeV]");
     144      }
     145
    132146    return kTRUE;
    133147}
     
    142156  MMcEvt &mcevt = *(MMcEvt*)par;
    143157
    144   fHistSel->Fill(log10(mcevt.GetEnergy()), kRad2Deg*mcevt.GetTelescopeTheta(), w);
     158  if (fEaxis == kLog10Energy)
     159    fHistSel->Fill(log10(mcevt.GetEnergy()), kRad2Deg*mcevt.GetTelescopeTheta(), w);
     160  else
     161    fHistSel->Fill(mcevt.GetEnergy(), kRad2Deg*mcevt.GetTelescopeTheta(), w);
     162
    145163  return kTRUE;
    146164}
     
    193211
    194212  c.cd(1);
     213  if (fEaxis == kEnergy)
     214    gPad->SetLogx();
    195215  fHistCol->SetDirectory(NULL);
    196216  fHistCol->DrawCopy(option);
    197217
    198218  c.cd(2);
     219  if (fEaxis == kEnergy)
     220    gPad->SetLogx();
    199221  fHistSel->SetDirectory(NULL);
    200222  fHistSel->DrawCopy(option);
    201223
    202224  c.cd(3);
     225  if (fEaxis == kEnergy)
     226    gPad->SetLogx();
    203227  fHistAll->SetDirectory(NULL);
    204228  fHistAll->DrawCopy(option);
     
    435459      for (Int_t i=1; i <= fHistAll->GetNbinsX(); i++)
    436460        {
    437           Float_t e1 = pow(10.,fHistAll->GetXaxis()->GetBinLowEdge(i));
    438           Float_t e2 = pow(10.,fHistAll->GetXaxis()->GetBinLowEdge(i+1));
     461          Float_t e1;
     462          Float_t e2;
     463
     464          if (fEaxis == kLog10Energy)
     465            {
     466              e1 = pow(10.,fHistAll->GetXaxis()->GetBinLowEdge(i));
     467              e2 = pow(10.,fHistAll->GetXaxis()->GetBinLowEdge(i+1));
     468            }
     469          else
     470            {
     471              e1 = fHistAll->GetXaxis()->GetBinLowEdge(i);
     472              e2 = fHistAll->GetXaxis()->GetBinLowEdge(i+1);
     473            }
    439474
    440475          Float_t events = 0.;
Note: See TracChangeset for help on using the changeset viewer.