Changeset 6954 for trunk/MagicSoft/Mars/mhflux/MHEnergyEst.cc
- Timestamp:
- 04/18/05 20:11:09 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhflux/MHEnergyEst.cc
r6949 r6954 219 219 } 220 220 221 void MHEnergyEst::GetWeights(TH1D &hist) const 222 { 223 // Project into EnergyEst_ey 224 TH1D *h1 = (TH1D*)fHEnergy.Project3D("rtlprmft_ex"); 225 TH1D *h2 = (TH1D*)fHEnergy.Project3D("rtlprmft_ey"); 226 227 h1->Copy(hist); 228 hist.Divide(h2); 229 230 delete h1; 231 delete h2; 232 233 hist.SetNameTitle("EnergyRatio", "Ratio between estimated and monte carlo energy"); 234 hist.SetXTitle("E [GeV]"); 235 hist.SetYTitle("N_{est}/N_{mc} [1]"); 236 hist.SetDirectory(0); 237 } 238 221 239 void MHEnergyEst::Paint(Option_t *opt) 222 240 {
Note:
See TracChangeset
for help on using the changeset viewer.