Changeset 6949 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 04/18/05 10:35:54 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MEnergyEstimate.h
r6932 r6949 28 28 void SetVariables(const TArrayD &); 29 29 30 void Print(Option_t *o="") const; 30 void Print(Option_t *o="") const; //*MENU* 31 31 32 32 ClassDef(MEnergyEstimate, 1) // Task to estimate the energy by a rule -
trunk/MagicSoft/Mars/manalysis/MMatrixLoop.cc
r6924 r6949 58 58 UInt_t MMatrixLoop::GetEntries() 59 59 { 60 return fMatrix ? fMatrix->GetNumRows() : 0; 60 if (!fMatrix) 61 return 0; 62 63 return fOperationMode==kDefault ? fMatrix->GetNumRows() : (fMatrix->GetNumRows()+1)/2; 61 64 } 62 65
Note:
See TracChangeset
for help on using the changeset viewer.