Changeset 863 for trunk/MagicSoft
- Timestamp:
- 07/10/01 14:41:15 (23 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r860 r863 1 1 -*-*- END -*-*- 2 3 2001/07/10: Thomas Bretz 4 5 * mhist/MHMcEnergy.h: 6 - renamed SetBins to SetNumBins 7 8 * mmontecarlo/MMcThresholdCalc.cc: 9 - changed style of comments 10 11 2 12 3 13 2001/07/09: Thomas Bretz -
trunk/MagicSoft/Mars/mhist/MHMcEnergy.cc
r861 r863 27 27 // MHMcEnergy 28 28 // 29 // This class holds the information ( histogram and fit function )29 // This class holds the information (histogram and fit function) 30 30 // about the energy threshold for a particular trigger condition. 31 31 // … … 135 135 // Set the number of bins in the histogran. 136 136 // 137 void MHMcEnergy::Set Bins(Int_t nbins)137 void MHMcEnergy::SetNumBins(Int_t nbins) 138 138 { 139 hLogEner->SetBins(nbins,0.5,4.5);139 hLogEner->SetBins(nbins, 0.5, 4.5); 140 140 } 141 141 // -------------------------------------------------------------------------- … … 191 191 } 192 192 193 194 195 -
trunk/MagicSoft/Mars/mhist/MHMcEnergy.h
r861 r863 32 32 void Fill(Float_t log10E, Float_t w); 33 33 void Fit(Axis_t xxmin, Axis_t xxmax); 34 void Set Bins(Int_t nbins = 100);34 void SetNumBins(Int_t nbins = 100); 35 35 36 36 void Draw(Option_t* option = "");
Note:
See TracChangeset
for help on using the changeset viewer.