Changeset 8719 for trunk/MagicSoft/Mars/mhbase
- Timestamp:
- 08/28/07 13:03:04 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhbase/MHn.cc
r8709 r8719 317 317 } 318 318 319 // -------------------------------------------------------------------------- 320 // 321 // Set additional scale factors for the current histogram 322 // 319 323 void MHn::SetScale(Double_t x, Double_t y, Double_t z) const 320 324 { … … 323 327 } 324 328 329 // -------------------------------------------------------------------------- 330 // 331 // Enable or disable displaying log-scale for the current histogram. 332 // Normally it is retrieved from the corresponding MBinning 333 // 325 334 void MHn::SetLog(Bool_t x, Bool_t y, Bool_t z) const 326 335 { … … 328 337 fHist[fNum-1]->SetLog(x, y, z); 329 338 } 339 340 // -------------------------------------------------------------------------- 341 // 342 // Set the axis range in Finalize automatically to the histogram region 343 // containing contents. This is the default for the x-axis. 344 // This function can be used to enable this behaviour also for the other 345 // axis, or disable it for the x-axis of the current histogram. 346 // 330 347 void MHn::SetAutoRange(Bool_t x, Bool_t y, Bool_t z) const 331 348 { … … 334 351 } 335 352 353 // -------------------------------------------------------------------------- 354 // 355 // Call Sumw2 for trhe current histogram, enabling errors. 356 // 336 357 void MHn::Sumw2() const 337 358 { … … 340 361 } 341 362 363 // -------------------------------------------------------------------------- 364 // 365 // Force the given binning(s) for the current histogram. The binnings 366 // do not get owned. The user is responsible for deleting them. 367 // 342 368 void MHn::SetBinnings(MBinning *x, MBinning *y, MBinning *z) const 343 369 {
Note:
See TracChangeset
for help on using the changeset viewer.