Changeset 1238
- Timestamp:
- 03/12/02 15:57:41 (23 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1237 r1238 1 1 -*-*- END -*-*- 2 2 3 2002/03/07: Thomas Bretz 3 2002/03/12: Thomas Bretz 4 5 * mmontecarlo/MMcTimeGenerate.cc (thanks to Wolfgang): 6 - removed wrong comment for Process 7 - changed Int_t to UInt_t (more readable) 8 - replaced unit: ms -> 0.1ms 9 10 11 12 2002/03/08: Thomas Bretz 4 13 5 14 * manalysis/MHillasSrc.[h,cc]: -
trunk/MagicSoft/Mars/mmontecarlo/MMcTimeGenerate.cc
r1211 r1238 76 76 // -------------------------------------------------------------------------- 77 77 // 78 // The Process-function counts the number of simulated showers, the79 // number of analised showers and the number of triggers. It also updates80 // the limits for theta, phi, energy and impact parameter in the81 // MHMcRate container.82 78 // 83 79 Bool_t MMcTimeGenerate::Process() … … 88 84 while (dt < fDeadTime); 89 85 90 const Int_t t = fTime->GetTimeLo();86 const UInt_t t = fTime->GetTimeLo(); 91 87 92 fTime->SetTime(t+dt*10000, 0); // [ ms]88 fTime->SetTime(t+dt*10000, 0); // [0.1ms] 93 89 94 90 return kTRUE;
Note:
See TracChangeset
for help on using the changeset viewer.