Changeset 1088 for trunk/MagicSoft
- Timestamp:
- 11/26/01 15:07:11 (23 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1086 r1088 1 1 -*-*- END -*-*- 2 3 2001/11/16: Thomas Bretz 4 5 * mhist/MHMcCollectionArea.cc: 6 - set the ReadyToSave bit in CalcEfficiency. 7 8 * mmontecarlo/MMcThresholdCalc.cc: 9 - set the ReadyToSave bit after the calculation has been finished. 10 11 * mhist/MHMcRate.cc: 12 - set the ReadyToSave bit in CalcRate 13 14 2 15 3 16 2001/11/16: Thomas Bretz -
trunk/MagicSoft/Mars/mhist/MHMcCollectionArea.cc
r1082 r1088 194 194 // -------------------------------------------------------------------------- 195 195 // 196 // Calculate the Efficiency (collection area) 196 // Calculate the Efficiency (collection area) and set the 'ReadyToSave' 197 // flag 197 198 // 198 199 void MHMcCollectionArea::CalcEfficiency() … … 258 259 fHistCol->SetBinError(ix, sqrt(errA)); 259 260 } 260 } 261 262 SetReadyToSave(); 263 } -
trunk/MagicSoft/Mars/mhist/MHMcRate.cc
r1082 r1088 151 151 // -------------------------------------------------------------------------- 152 152 // 153 // compute the trigger rate 153 // compute the trigger rate and set the ReadyToSave bit 154 154 // 155 155 void MHMcRate::CalcRate(Float_t trig, Float_t anal, Float_t simu) … … 188 188 189 189 fTriggerRate = trig*fShowerRate/simu + anal2*fBackTrig/back2; 190 191 SetReadyToSave(); 190 192 } 191 193 -
trunk/MagicSoft/Mars/mmontecarlo/MMcThresholdCalc.cc
r1082 r1088 176 176 sigma = hist.GetGaussSigma(); 177 177 hist.Fit(peak - fSqrt2*sigma, peak + fSqrt2*sigma); 178 179 hist.SetReadyToSave(); 178 180 } 179 181 return kTRUE;
Note:
See TracChangeset
for help on using the changeset viewer.